@stacksjs/types 0.66.0 → 0.68.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ai.d.ts +17 -14
- package/dist/analytics.d.ts +12 -14
- package/dist/api.d.ts +25 -66
- package/dist/app.d.ts +29 -134
- package/dist/auto-imports.d.ts +1 -1
- package/dist/binary.d.ts +7 -10
- package/dist/build.d.ts +2 -2
- package/dist/cache.d.ts +48 -61
- package/dist/cdn.d.ts +3 -15
- package/dist/chat.d.ts +2 -2
- package/dist/cli.d.ts +252 -238
- package/dist/cloud.d.ts +305 -68
- package/dist/components.d.ts +11 -59
- package/dist/configure.d.ts +11 -11
- package/dist/cron-jobs.d.ts +34 -41
- package/dist/database.d.ts +50 -45
- package/dist/dependencies.d.ts +15 -61
- package/dist/deploy.d.ts +10 -16
- package/dist/dns.d.ts +349 -167
- package/dist/docs.d.ts +20 -19
- package/dist/email.d.ts +15 -10
- package/dist/errors.d.ts +87 -69
- package/dist/events.d.ts +3 -30
- package/dist/exit-code.d.ts +4 -9
- package/dist/file-systems.d.ts +52 -56
- package/dist/git.d.ts +54 -126
- package/dist/hashing.d.ts +30 -97
- package/dist/helpers.d.ts +1 -1
- package/dist/i18n.d.ts +10 -18
- package/dist/index.d.ts +62 -61
- package/dist/index.js +1 -4
- package/dist/inspect.d.ts +3 -9
- package/dist/library.d.ts +798 -139
- package/dist/logging.d.ts +5 -27
- package/dist/manifest.d.ts +6 -9
- package/dist/model-names.d.ts +1 -1
- package/dist/model.d.ts +150 -130
- package/dist/notifications.d.ts +150 -105
- package/dist/pages.d.ts +10 -10
- package/dist/payments.d.ts +84 -55
- package/dist/ports.d.ts +13 -20
- package/dist/promise.d.ts +1 -1
- package/dist/push.d.ts +34 -30
- package/dist/pwa.d.ts +3 -7
- package/dist/queue.d.ts +36 -33
- package/dist/reactivity.d.ts +1 -1
- package/dist/request.d.ts +39 -26
- package/dist/router.d.ts +51 -51
- package/dist/saas.d.ts +32 -0
- package/dist/scheduler.d.ts +1 -1
- package/dist/search-engine.d.ts +85 -111
- package/dist/security.d.ts +18 -16
- package/dist/server.d.ts +16 -6
- package/dist/services.d.ts +34 -28
- package/dist/settings-config.d.ts +8 -8
- package/dist/ssg.d.ts +3 -2
- package/dist/stacks.d.ts +53 -203
- package/dist/storage.d.ts +29 -11
- package/dist/tables.d.ts +34 -52
- package/dist/team.d.ts +7 -8
- package/dist/ui.d.ts +39 -162
- package/dist/utils.d.ts +20 -30
- package/package.json +9 -10
- package/src/cache.ts +18 -0
- package/src/cli.ts +4 -0
- package/src/cloud.ts +16 -4
- package/src/errors.ts +8 -0
- package/src/index.ts +1 -0
- package/src/model-names.ts +1 -1
- package/src/model.ts +6 -0
- package/src/payments.ts +32 -0
- package/src/router.ts +1 -2
- package/src/saas.ts +33 -0
- package/src/stacks.ts +10 -0
- package/src/storage.ts +27 -0
- package/dist/env.d.ts +0 -0
- package/dist/index.js.map +0 -20
- package/dist/layout.d.ts +0 -0
- package/dist/native.d.ts +0 -0
- package/dist/sms.d.ts +0 -0
package/dist/cli.d.ts
CHANGED
|
@@ -1,252 +1,266 @@
|
|
|
1
|
-
import type { BunFile } from
|
|
2
|
-
import type { Ports } from
|
|
3
|
-
|
|
4
|
-
export type { ErrorLike, SpawnOptions, Subprocess, SyncSubprocess } from
|
|
5
|
-
export type
|
|
6
|
-
|
|
7
|
-
export type
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
export type stdout =
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
* - `number`: The process will write to the file descriptor
|
|
41
|
-
*
|
|
42
|
-
* @default "inherit" for `spawn`
|
|
43
|
-
* "pipe" for `spawnSync`
|
|
44
|
-
*/
|
|
45
|
-
export type stderr = "ignore" | "inherit" | "pipe" | ArrayBufferView | number;
|
|
46
|
-
export interface OutroOptions extends CliOptions {
|
|
47
|
-
type?: "success" | "error" | "warning" | "info";
|
|
48
|
-
startTime?: number;
|
|
49
|
-
useSeconds?: boolean;
|
|
50
|
-
quiet?: boolean;
|
|
51
|
-
message?: string;
|
|
1
|
+
import type { BunFile } from 'bun';
|
|
2
|
+
import type { Ports } from './ports';
|
|
3
|
+
|
|
4
|
+
export type { ErrorLike, SpawnOptions, Subprocess, SyncSubprocess } from 'bun';
|
|
5
|
+
export type { CAC as CLI } from 'cac';
|
|
6
|
+
declare type ArrayBufferView = NodeJS.TypedArray | DataView
|
|
7
|
+
export declare type Readable =
|
|
8
|
+
| 'pipe'
|
|
9
|
+
| 'inherit'
|
|
10
|
+
| 'ignore'
|
|
11
|
+
| null
|
|
12
|
+
| undefined
|
|
13
|
+
| BunFile
|
|
14
|
+
| ArrayBufferView
|
|
15
|
+
| number
|
|
16
|
+
export declare type Writable =
|
|
17
|
+
| 'pipe'
|
|
18
|
+
| 'inherit'
|
|
19
|
+
| 'ignore'
|
|
20
|
+
| null
|
|
21
|
+
| undefined
|
|
22
|
+
| BunFile
|
|
23
|
+
| ArrayBufferView
|
|
24
|
+
| number
|
|
25
|
+
| ReadableStream
|
|
26
|
+
| Blob
|
|
27
|
+
| Response
|
|
28
|
+
| Request
|
|
29
|
+
export declare type In = Readable
|
|
30
|
+
export type Out = Writable
|
|
31
|
+
export declare type stdin = 'ignore' | 'inherit' | 'pipe' | ArrayBufferView | number | null | undefined
|
|
32
|
+
export declare type stdout = 'ignore' | 'inherit' | 'pipe' | ArrayBufferView | number
|
|
33
|
+
export declare type stderr = 'ignore' | 'inherit' | 'pipe' | ArrayBufferView | number
|
|
34
|
+
export declare interface OutroOptions extends CliOptions {
|
|
35
|
+
type?: 'success' | 'error' | 'warning' | 'info'
|
|
36
|
+
startTime?: number
|
|
37
|
+
useSeconds?: boolean
|
|
38
|
+
quiet?: boolean
|
|
39
|
+
message?: string
|
|
52
40
|
}
|
|
53
|
-
export interface IntroOptions {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
showPerformance?: boolean;
|
|
58
|
-
/**
|
|
59
|
-
* @default false
|
|
60
|
-
*/
|
|
61
|
-
quiet: boolean;
|
|
41
|
+
export declare interface IntroOptions {
|
|
42
|
+
showPerformance?: boolean
|
|
43
|
+
|
|
44
|
+
quiet: boolean
|
|
62
45
|
}
|
|
63
|
-
export type CliOptionsKeys = keyof CliOptions
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
*
|
|
94
|
-
* @default false
|
|
95
|
-
*/
|
|
96
|
-
quiet?: boolean;
|
|
97
|
-
/**
|
|
98
|
-
* **Current Work Directory**
|
|
99
|
-
*
|
|
100
|
-
* Based on the `cwd` value, that's where the command...
|
|
101
|
-
*
|
|
102
|
-
* @default projectPath()
|
|
103
|
-
*/
|
|
104
|
-
cwd?: string;
|
|
105
|
-
/**
|
|
106
|
-
* **stdio**
|
|
107
|
-
*
|
|
108
|
-
* The `stdio` option lets you configure the standard I/O of the spawned process.
|
|
109
|
-
*
|
|
110
|
-
*/
|
|
111
|
-
/**
|
|
112
|
-
* @default 'pipe'
|
|
113
|
-
*/
|
|
114
|
-
stdin?: stdin;
|
|
115
|
-
/**
|
|
116
|
-
* @default 'pipe'
|
|
117
|
-
*/
|
|
118
|
-
stdout?: stdout;
|
|
119
|
-
/**
|
|
120
|
-
* @default 'inherit'
|
|
121
|
-
*/
|
|
122
|
-
stderr?: stderr;
|
|
123
|
-
env?: Record<string, string | undefined>;
|
|
124
|
-
/**
|
|
125
|
-
* Runs the action in interactive/detached mode.
|
|
126
|
-
* @default false
|
|
127
|
-
*/
|
|
128
|
-
background?: boolean;
|
|
129
|
-
startTime?: number;
|
|
130
|
-
/**
|
|
131
|
-
* Include the localhost URL in the output.
|
|
132
|
-
* @default false
|
|
133
|
-
*/
|
|
134
|
-
withLocalhost?: boolean;
|
|
135
|
-
input?: string | ArrayBufferView | ReadableStream | Blob | Response | Request;
|
|
136
|
-
project?: string;
|
|
46
|
+
export declare type CliOptionsKeys = keyof CliOptions
|
|
47
|
+
export declare interface CliOptions {
|
|
48
|
+
verbose?: boolean
|
|
49
|
+
|
|
50
|
+
silent?: boolean
|
|
51
|
+
|
|
52
|
+
quiet?: boolean
|
|
53
|
+
|
|
54
|
+
cwd?: string
|
|
55
|
+
|
|
56
|
+
stdio?: [In, Out, Out]
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
stdin?: stdin
|
|
60
|
+
|
|
61
|
+
stdout?: stdout
|
|
62
|
+
|
|
63
|
+
stderr?: stderr
|
|
64
|
+
|
|
65
|
+
env?: Record<string, string | undefined>
|
|
66
|
+
|
|
67
|
+
background?: boolean
|
|
68
|
+
|
|
69
|
+
startTime?: number
|
|
70
|
+
|
|
71
|
+
withLocalhost?: boolean
|
|
72
|
+
|
|
73
|
+
input?: string | ArrayBufferView | ReadableStream | Blob | Response | Request
|
|
74
|
+
|
|
75
|
+
project?: string
|
|
137
76
|
}
|
|
138
|
-
export type CliConfig = CliOptions
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
export type BuildOption =
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
export type
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
export type
|
|
165
|
-
export type
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
export type
|
|
169
|
-
export type
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
77
|
+
export declare type CliConfig = CliOptions
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
export type ActionOption = 'types' | 'domains' | 'count'
|
|
81
|
+
export declare type ActionOptions = {
|
|
82
|
+
types?: boolean
|
|
83
|
+
domains?: boolean
|
|
84
|
+
count?: number
|
|
85
|
+
dryRun?: boolean
|
|
86
|
+
} & CliOptions &
|
|
87
|
+
DomainsOptions
|
|
88
|
+
export declare type BuildOption =
|
|
89
|
+
| 'components'
|
|
90
|
+
| 'vueComponents'
|
|
91
|
+
| 'webComponents'
|
|
92
|
+
| 'elements'
|
|
93
|
+
| 'functions'
|
|
94
|
+
| 'docs'
|
|
95
|
+
| 'views'
|
|
96
|
+
| 'stacks'
|
|
97
|
+
| 'all'
|
|
98
|
+
| 'buddy'
|
|
99
|
+
| 'server'
|
|
100
|
+
export declare type BuildOptions = {
|
|
101
|
+
[key in BuildOption]: boolean
|
|
102
|
+
} & CliOptions
|
|
103
|
+
export declare type AddOption = 'table' | 'calendar' | 'all'
|
|
104
|
+
export type AddOptions = {
|
|
105
|
+
[key in AddOption]?: boolean
|
|
106
|
+
} & CliOptions
|
|
107
|
+
export declare type CreateStringOption = 'name'
|
|
108
|
+
export type CreateBooleanOption =
|
|
109
|
+
| 'ui'
|
|
110
|
+
| 'components'
|
|
111
|
+
| 'web-components'
|
|
112
|
+
| 'vue'
|
|
113
|
+
| 'views'
|
|
114
|
+
| 'functions'
|
|
115
|
+
| 'api'
|
|
116
|
+
| 'database'
|
|
117
|
+
export declare type CreateOptions = {
|
|
118
|
+
[key in CreateBooleanOption]: boolean
|
|
119
|
+
} & {
|
|
120
|
+
[key in CreateStringOption]: string
|
|
121
|
+
} & CliOptions
|
|
122
|
+
export declare type DevOption =
|
|
123
|
+
| 'components'
|
|
124
|
+
| 'docs'
|
|
125
|
+
| 'frontend'
|
|
126
|
+
| 'api'
|
|
127
|
+
| 'desktop'
|
|
128
|
+
| 'all'
|
|
129
|
+
| 'email'
|
|
130
|
+
| 'system-tray'
|
|
131
|
+
| 'interactive'
|
|
132
|
+
| 'verbose'
|
|
133
|
+
export declare type DevOptions = {
|
|
134
|
+
[key in DevOption]: boolean
|
|
135
|
+
} & CliOptions
|
|
136
|
+
export declare type GeneratorOption =
|
|
137
|
+
| 'types'
|
|
138
|
+
| 'entries'
|
|
139
|
+
| 'webTypes'
|
|
140
|
+
| 'customData'
|
|
141
|
+
| 'ideHelpers'
|
|
142
|
+
| 'componentMeta'
|
|
143
|
+
| 'coreSymlink'
|
|
144
|
+
| 'openApiSpec'
|
|
145
|
+
| 'pkgxConfig'
|
|
146
|
+
| 'openapi'
|
|
147
|
+
| 'modelFiles'
|
|
148
|
+
export declare type GeneratorOptions = {
|
|
149
|
+
[key in GeneratorOption]?: boolean
|
|
150
|
+
} & CliOptions
|
|
151
|
+
export declare type LintOption = 'fix'
|
|
152
|
+
export type LintOptions = {
|
|
153
|
+
[key in LintOption]: boolean
|
|
154
|
+
} & CliOptions
|
|
155
|
+
export declare type MakeStringOption = 'name' | 'chat' | 'sms' | 'env'
|
|
156
|
+
export type MakeBooleanOption =
|
|
157
|
+
| 'component'
|
|
158
|
+
| 'page'
|
|
159
|
+
| 'function'
|
|
160
|
+
| 'language'
|
|
161
|
+
| 'database'
|
|
162
|
+
| 'migration'
|
|
163
|
+
| 'model'
|
|
164
|
+
| 'notification'
|
|
165
|
+
| 'stack'
|
|
166
|
+
export declare type MakeOptions = {
|
|
167
|
+
[key in MakeBooleanOption]: boolean
|
|
168
|
+
} & {
|
|
169
|
+
[key in MakeStringOption]: string
|
|
170
|
+
} & CliOptions
|
|
171
|
+
export declare type UpgradeBoolean = 'framework' | 'dependencies' | 'bun' | 'shell' | 'binary' | 'all' | 'force'
|
|
172
|
+
export declare type UpgradeString = 'version'
|
|
173
|
+
export declare type UpgradeOptions = {
|
|
174
|
+
[key in UpgradeBoolean]: boolean
|
|
175
|
+
} & {
|
|
176
|
+
[key in UpgradeString]: string
|
|
177
|
+
} & CliOptions
|
|
178
|
+
export declare type ExamplesString = 'version'
|
|
179
|
+
export type ExamplesBoolean = 'components' | 'vue' | 'webComponents' | 'elements' | 'all' | 'force'
|
|
180
|
+
export declare type ExamplesOption = ExamplesString & ExamplesBoolean
|
|
181
|
+
export type ExamplesOptions = {
|
|
182
|
+
[key in ExamplesString]: string
|
|
183
|
+
} & {
|
|
184
|
+
[key in ExamplesBoolean]: boolean
|
|
185
|
+
} & CliOptions
|
|
186
|
+
export declare type TestOptions = CliOptions & {
|
|
187
|
+
ui?: boolean
|
|
188
|
+
feature?: boolean
|
|
189
|
+
unit?: boolean
|
|
190
|
+
}
|
|
191
|
+
export declare type DomainsOptions = CliOptions & {
|
|
192
|
+
domain?: string
|
|
193
|
+
yes?: boolean
|
|
194
|
+
years?: number
|
|
195
|
+
privacy?: boolean
|
|
196
|
+
autoRenew?: boolean
|
|
197
|
+
registrantFirstName?: string
|
|
198
|
+
registrantLastName?: string
|
|
199
|
+
registrantOrganization?: string
|
|
200
|
+
registrantAddress?: string
|
|
201
|
+
registrantCity?: string
|
|
202
|
+
registrantState?: string
|
|
203
|
+
registrantCountry?: string
|
|
204
|
+
registrantZip?: string
|
|
205
|
+
registrantPhone?: string
|
|
206
|
+
registrantEmail?: string
|
|
207
|
+
adminFirstName?: string
|
|
208
|
+
adminLastName?: string
|
|
209
|
+
adminOrganization?: string
|
|
210
|
+
adminAddress?: string
|
|
211
|
+
adminCity?: string
|
|
212
|
+
adminState?: string
|
|
213
|
+
adminCountry?: string
|
|
214
|
+
adminZip?: string
|
|
215
|
+
adminPhone?: string
|
|
216
|
+
adminEmail?: string
|
|
217
|
+
techFirstName?: string
|
|
218
|
+
techLastName?: string
|
|
219
|
+
techOrganization?: string
|
|
220
|
+
techAddress?: string
|
|
221
|
+
techCity?: string
|
|
222
|
+
techState?: string
|
|
223
|
+
techCountry?: string
|
|
224
|
+
techZip?: string
|
|
225
|
+
techPhone?: string
|
|
226
|
+
techEmail?: string
|
|
227
|
+
privacyAdmin?: boolean
|
|
228
|
+
privacyTech?: boolean
|
|
229
|
+
privacyRegistrant?: boolean
|
|
230
|
+
contactType?: string
|
|
231
|
+
}
|
|
232
|
+
export declare interface CleanOptions extends CliOptions {}
|
|
233
|
+
export declare interface SaasOptions extends CliOptions {}
|
|
219
234
|
export interface CloudCliOptions extends CliOptions {
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
235
|
+
ssh?: boolean
|
|
236
|
+
connect?: boolean
|
|
237
|
+
jumpBox?: boolean
|
|
238
|
+
invalidateCache?: boolean
|
|
239
|
+
paths?: string
|
|
240
|
+
diff?: boolean
|
|
226
241
|
}
|
|
227
|
-
export interface CommitOptions extends CliOptions {}
|
|
242
|
+
export declare interface CommitOptions extends CliOptions {}
|
|
228
243
|
export interface KeyOptions extends CliOptions {}
|
|
229
|
-
export interface FreshOptions extends CliOptions {
|
|
230
|
-
|
|
231
|
-
|
|
244
|
+
export declare interface FreshOptions extends CliOptions {
|
|
245
|
+
dryRun?: boolean
|
|
246
|
+
quiet?: boolean
|
|
232
247
|
}
|
|
233
|
-
export interface MigrateOptions extends CliOptions {
|
|
234
|
-
|
|
248
|
+
export declare interface MigrateOptions extends CliOptions {
|
|
249
|
+
diff?: boolean
|
|
235
250
|
}
|
|
236
|
-
export interface InspireOptions extends CliOptions {}
|
|
251
|
+
export declare interface InspireOptions extends CliOptions {}
|
|
237
252
|
export interface InstallOptions extends CliOptions {}
|
|
238
|
-
export interface ReleaseOptions extends CliOptions {
|
|
239
|
-
|
|
253
|
+
export declare interface ReleaseOptions extends CliOptions {
|
|
254
|
+
dryRun?: boolean
|
|
240
255
|
}
|
|
241
|
-
export interface ProjectsOptions extends CliOptions {
|
|
242
|
-
|
|
256
|
+
export declare interface ProjectsOptions extends CliOptions {
|
|
257
|
+
list?: boolean
|
|
243
258
|
}
|
|
244
|
-
export interface PreinstallOptions extends CliOptions {}
|
|
259
|
+
export declare interface PreinstallOptions extends CliOptions {}
|
|
245
260
|
export interface PrepublishOptions extends CliOptions {}
|
|
246
|
-
export interface PortsOptions extends CliOptions {
|
|
247
|
-
|
|
261
|
+
export declare interface PortsOptions extends CliOptions {
|
|
262
|
+
ports?: Partial<Ports>
|
|
248
263
|
}
|
|
249
|
-
export interface TinkerOptions extends CliOptions {}
|
|
264
|
+
export declare interface TinkerOptions extends CliOptions {}
|
|
250
265
|
export interface TypesOptions extends CliOptions {}
|
|
251
|
-
export type LibEntryType =
|
|
252
|
-
export type { CAC as CLI } from "cac";
|
|
266
|
+
export declare type LibEntryType = 'vue-components' | 'web-components' | 'functions' | 'all'
|