detective-postcss
Version:
Detective to find dependents of CSS (PostCSS dialect)
11 lines (10 loc) • 307 B
TypeScript
export declare class MalformedCssError extends Error {
}
export interface Options {
url?: boolean;
}
declare function detective(src: string, options?: Options): string[];
declare namespace detective {
var MalformedCssError: typeof import("./index.js").MalformedCssError;
}
export default detective;