mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-27 09:35:37 -05:00
18 lines
308 B
TypeScript
18 lines
308 B
TypeScript
declare module 'find-remove' {
|
|
namespace findRemove {
|
|
interface FindRemoveApi {
|
|
(path: string, options: FindRemoveOptions): JSON;
|
|
}
|
|
|
|
interface FindRemoveOptions {
|
|
age?: {
|
|
seconds?: number;
|
|
};
|
|
limit?: number;
|
|
}
|
|
}
|
|
|
|
const findRemove: findRemove.FindRemoveApi;
|
|
export = findRemove;
|
|
}
|