UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

21 lines (20 loc) 711 B
export type ContainerType = Element | ShadowRoot; export type Prepend = boolean | 'queue'; export type AppendType = 'prependQueue' | 'append' | 'prepend'; interface Options { attachTo?: ContainerType; csp?: { nonce?: string; }; prepend?: Prepend; mark?: string; priority?: number; } export declare function injectCSS(css: string, option?: Options): HTMLStyleElement; export declare function removeCSS(key: string, option?: Options): void; /** * manually clear container cache to avoid global cache in unit testes */ export declare function clearContainerCache(): void; export declare function updateCSS(css: string, key: string, option?: Options): HTMLStyleElement; export {};