/** * 配置类型 */ export type WindowApiOption = { document: Document; window: Window & typeof globalThis; globalThis?: typeof globalThis | Window; self?: Window & typeof globalThis; top: Window; setTimeout: typeof setTimeout; clearTimeout: typeof clearTimeout; setInterval: typeof setInterval; clearInterval: typeof clearInterval; };