Skip to content

Commit 7312fa7

Browse files
committed
chore: improve types
1 parent bc35afb commit 7312fa7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/types/module.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export interface ModuleOptions {
77
*/
88
ai?: false | 'vercel' | 'cloudflare'
99
/**
10-
* Set `'vercel'` or `'cloudflare'` to enable AI for the project.
10+
* Enable blob storage for the project.
1111
*
1212
* @default false
1313
* @see https://hub.nuxt.com/docs/features/blob
@@ -21,12 +21,12 @@ export interface ModuleOptions {
2121
*/
2222
cache?: boolean
2323
/**
24-
* Set `true` to enable database for the project. Set to `'postgresql'`, `'sqlite'`, or `'mysql'` to use a specific database dialect with a zero-config development database.
24+
* Set to `'postgresql'`, `'sqlite'`, or `'mysql'` to use a specific database dialect with a zero-config development database.
2525
*
2626
* @default false
2727
* @see https://hub.nuxt.com/docs/features/database
2828
*/
29-
database?: boolean | 'postgresql' | 'sqlite' | 'mysql'
29+
database?: false | 'postgresql' | 'sqlite' | 'mysql'
3030
/**
3131
* Set `true` to enable the key-value storage for the project.
3232
*

0 commit comments

Comments
 (0)