mini-css-extract-plugin
Version:
extracts CSS into separate files
17 lines (16 loc) • 374 B
TypeScript
declare namespace _exports {
export { GetScriptSrc, HotHTMLLinkElement };
}
declare function _exports(
moduleId: number | string,
options: {
filename?: string;
locals?: boolean;
},
): () => void;
export = _exports;
type GetScriptSrc = (filename?: string) => string[];
type HotHTMLLinkElement = HTMLLinkElement & {
isLoaded: boolean;
visited: boolean;
};