Skip to content

Commit

Permalink
Merge pull request #69 from nextcloud-libraries/chore/fix-typing
Browse files Browse the repository at this point in the history
chore(typing): fix typo in typing
  • Loading branch information
susnux authored Nov 28, 2023
2 parents f91843a + 362043f commit 31e5bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/baseConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export interface BaseOptions {
* @example Move CSS styles to `styles/style.css` instead of the default `css/[entrypoint-name].css`:
* (chunkInfo) => chunkInfo.name.endsWith('.css') ? 'styles/style.css' : undefined
*/
assetFileNames?: (chunkInfo: Rollup.PreRenderedAsset) => 'string' | undefined,
assetFileNames?: (chunkInfo: Rollup.PreRenderedAsset) => string | undefined,
/**
* Vite config to override or extend the base config
*/
Expand Down

0 comments on commit 31e5bb2

Please sign in to comment.