Skip to content

Commit d292f04

Browse files
committed
Fix include exclude typings
1 parent 14935a1 commit d292f04

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/plugin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ export type PluginOptions = docGen.ParserOptions &
5959
LoaderOptions &
6060
TypescriptOptions & {
6161
/** Glob patterns to ignore */
62-
exclude?: [];
62+
exclude?: string[];
6363
/** Glob patterns to include. defaults to ts|tsx */
64-
include?: [];
64+
include?: string[];
6565
};
6666

6767
interface Module {

0 commit comments

Comments
 (0)