10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
|
declare function detective(src: any, options?: detective.Options): any[];
|
||
|
declare namespace detective {
|
||
|
interface Options {
|
||
|
url: boolean;
|
||
|
}
|
||
|
class MalformedCssError {
|
||
|
}
|
||
|
}
|
||
|
export = detective;
|