draggable/config/typescript/rollup-plugin-includepaths.d.ts
2023-09-25 19:26:58 -07:00

10 lines
226 B
TypeScript

declare module 'rollup-plugin-includepaths' {
interface Options {
include: {[key: string]: string};
paths: string[];
extensions: string[];
}
export = includePaths;
function includePaths(object: Options);
}