tatianamac 6d5445ecc5 update
2019-11-26 14:50:43 -08:00

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;