UNPKG

esm-loader-css

Version:
21 lines (20 loc) 584 B
/// <reference types="node" /> type Options = { parentURL: string; url: string; debug?: boolean; }; declare const config: { resolve: (specifier: string, options: Options) => { format: string | undefined; url: string; } | undefined; format: (url: string, options: Options) => { format: string; } | undefined; transform: (source: Buffer, options: Options) => { source: string; } | undefined; }; export default config; export declare const resolve: any, load: any, getFormat: any, getSource: any, transformSource: any;