@whitesev/utils
Version:
一个常用的工具库
15 lines (14 loc) • 384 B
TypeScript
/**
* 配置类型
*/
export type WindowApiOption = {
document: Document;
window: Window & typeof globalThis;
globalThis?: typeof globalThis | Window;
self?: Window & typeof globalThis;
top: Window;
setTimeout: Window["setTimeout"];
setInterval: Window["setInterval"];
clearTimeout: Window["clearTimeout"];
clearInterval: Window["clearInterval"];
};