Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Commit

Permalink
set same typing to include and exclude properties (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolashenry authored and lukastaegert committed Apr 4, 2019
1 parent 456a223 commit 5cb3b2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Expand Up @@ -6,13 +6,13 @@ interface RollupCommonJSOptions {
* specifically include/exclude files
* @default undefined
*/
include?: string | RegExp,
include?: string | RegExp | ReadonlyArray<string | RegExp>,
/**
* non-CommonJS modules will be ignored, but you can also
* specifically include/exclude files
* @default undefined
*/
exclude?: ReadonlyArray<string | RegExp>
exclude?: string | RegExp | ReadonlyArray<string | RegExp>,
/**
* search for files other than .js files (must already
* be transpiled by a previous plugin!)
Expand Down

0 comments on commit 5cb3b2d

Please sign in to comment.