types: fix generate types (#7780)

This commit is contained in:
Kevin Marrec 2020-07-27 11:03:11 +02:00 committed by GitHub
parent 298c3e3ef7
commit 1977b06d1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -74,6 +74,9 @@ jobs:
- name: lint - name: lint
run: yarn test:lint run: yarn test:lint
- name: test types
run: yarn test:types
needs: setup needs: setup
audit: audit:

View File

@ -21,7 +21,7 @@ export interface NuxtOptionsGenerate {
routes?: NuxtOptionsGenerateRoute[] | NuxtOptionsGenerateRoutesFunction | NuxtOptionsGenerateRoutesFunctionWithCallback routes?: NuxtOptionsGenerateRoute[] | NuxtOptionsGenerateRoutesFunction | NuxtOptionsGenerateRoutesFunctionWithCallback
subFolders?: boolean subFolders?: boolean
cache?: false | { cache?: false | {
ignore?: string[] | function, ignore?: string[] | Function,
globbyOptions?: GlobbyOptions globbyOptions?: GlobbyOptions
} }
} }