mirror of
https://github.com/Shopify/draggable.git
synced 2025-12-08 20:15:56 +00:00
10 lines
226 B
TypeScript
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);
|
|
}
|