DefinitelyTyped/types/rollup-plugin-delete/rollup-plugin-delete-tests.ts
2019-01-29 22:41:56 +03:00

14 lines
388 B
TypeScript

import del from 'rollup-plugin-delete';
del(); // $ExpectType Plugin
del({}); // $ExpectError
del({ targets: '/dist' }); // $ExpectType Plugin
del({ targets: ['/dist'], verbose: true }); // $ExpectType Plugin
del({ targets: ['/dist'], verbose: true, dryRun: true }); // $ExpectType Plugin
del({ targets: ['/dist'], verbose: true, dryRun: true, debug: true }); // $ExpectType Plugin