mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
388 B
TypeScript
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
|