10 lines
214 B
TypeScript
Raw Normal View History

2019-11-26 14:50:43 -08:00
declare function detective(src: any, options?: detective.Options): any[];
declare namespace detective {
interface Options {
url: boolean;
}
class MalformedCssError {
}
}
export = detective;