NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/qiankun/lib/sandbox/snapshotSandbox.d.ts

21 lines
512 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
/**
* @author Hydrogen
* @since 2020-3-8
*/
import type { SandBox } from '../interfaces';
import { SandBoxType } from '../interfaces';
/**
* diff Proxy
*/
export default class SnapshotSandbox implements SandBox {
proxy: WindowProxy;
name: string;
type: SandBoxType;
sandboxRunning: boolean;
private windowSnapshot;
private modifyPropsMap;
constructor(name: string);
active(): void;
inactive(): void;
}