@storm-software/workspace-tools 1.296.59 → 1.296.60
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/README.md +1 -1
- package/package.json +10 -10
- package/dist/executor-BUtmgAjf.d.ts +0 -145
- package/dist/executor-BnyqeRMQ.d.ts +0 -57
- package/dist/executor-CF2P28x7.d.ts +0 -267
- package/dist/executor-CtQ0X9Pp.d.ts +0 -305
- package/dist/executor-CyDG2Xnx.d.mts +0 -305
- package/dist/executor-DMfDjEeE.d.mts +0 -33
- package/dist/executor-DnWsZ925.d.mts +0 -145
- package/dist/executor-DzcyLzwF.d.mts +0 -143
- package/dist/executor-DzhOBtUi.d.ts +0 -143
- package/dist/executor-HE1a47Xg.d.mts +0 -57
- package/dist/executor-boD9fICC.d.ts +0 -33
- package/dist/executor-x1NRvlct.d.mts +0 -267
- package/dist/generator-9dRx-biC.d.mts +0 -38
- package/dist/generator-B28ipdml.d.ts +0 -38
- package/dist/generator-BwfBbJTK.d.mts +0 -130
- package/dist/generator-C8CSrU1X.d.mts +0 -108
- package/dist/generator-CETtBRcF.d.ts +0 -130
- package/dist/generator-CYZiAInn.d.ts +0 -130
- package/dist/generator-Cj2dPxfL.d.ts +0 -108
- package/dist/generator-Cw56SbGO.d.mts +0 -130
- package/dist/generator-E2v2OQls.d.ts +0 -130
- package/dist/generator-Nz6bDiFl.d.mts +0 -130
- package/dist/types-BTQ7Xra1.d.ts +0 -77
- package/dist/types-CsrlUBxJ.d.mts +0 -77
- package/dist/types-DwFGBJr1.d.mts +0 -243
- package/dist/types-DwFGBJr1.d.ts +0 -243
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from './types-DwFGBJr1.mjs';
|
|
2
|
-
import { Options } from 'tsup';
|
|
3
|
-
import './types-D2zxYEAh.mjs';
|
|
4
|
-
|
|
5
|
-
// Generated by @storm-software/untyped
|
|
6
|
-
// Do not edit this file directly
|
|
7
|
-
|
|
8
|
-
interface BaseExecutorSchema {
|
|
9
|
-
/**
|
|
10
|
-
* Output Path
|
|
11
|
-
*
|
|
12
|
-
* The output path for the build
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
* @format path
|
|
16
|
-
*/
|
|
17
|
-
outputPath?: string,
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// Generated by @storm-software/untyped
|
|
21
|
-
// Do not edit this file directly
|
|
22
|
-
|
|
23
|
-
interface BaseGeneratorSchema {
|
|
24
|
-
/**
|
|
25
|
-
* Directory
|
|
26
|
-
*
|
|
27
|
-
* The directory to create the library in
|
|
28
|
-
*
|
|
29
|
-
*/
|
|
30
|
-
directory?: string,
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
declare enum TypescriptProjectLinkingType {
|
|
34
|
-
ALIAS = "alias",
|
|
35
|
-
REFERENCE = "reference"
|
|
36
|
-
}
|
|
37
|
-
interface BaseTypescriptPluginOptions {
|
|
38
|
-
/**
|
|
39
|
-
* The project linking type to use for TypeScript projects.
|
|
40
|
-
*
|
|
41
|
-
* @see https://nx.dev/docs/concepts/typescript-project-linking
|
|
42
|
-
* @see https://nx.dev/docs/technologies/typescript/guides/switch-to-workspaces-project-references
|
|
43
|
-
*
|
|
44
|
-
* @defaultValue "reference"
|
|
45
|
-
*/
|
|
46
|
-
projectLinks?: TypescriptProjectLinkingType;
|
|
47
|
-
}
|
|
48
|
-
interface TsupContext {
|
|
49
|
-
projectRoot: string;
|
|
50
|
-
sourceRoot: string;
|
|
51
|
-
projectName: string;
|
|
52
|
-
main: string;
|
|
53
|
-
}
|
|
54
|
-
type BuildOptions = Options;
|
|
55
|
-
type Entry = string | string[] | Record<string, string>;
|
|
56
|
-
interface WorkspaceToolHooks<TSchema = any> {
|
|
57
|
-
applyDefaultOptions?: (options: Partial<TSchema>, config?: StormWorkspaceConfig) => Promise<TSchema> | TSchema;
|
|
58
|
-
preProcess?: (options: TSchema, config?: StormWorkspaceConfig) => Promise<void> | void;
|
|
59
|
-
postProcess?: (config?: StormWorkspaceConfig) => Promise<void> | void;
|
|
60
|
-
}
|
|
61
|
-
interface BaseWorkspaceToolOptions<TSchema = any> {
|
|
62
|
-
skipReadingConfig?: boolean;
|
|
63
|
-
hooks?: WorkspaceToolHooks<TSchema>;
|
|
64
|
-
}
|
|
65
|
-
type BaseExecutorOptions<TExecutorSchema extends BaseExecutorSchema = BaseExecutorSchema> = BaseWorkspaceToolOptions<TExecutorSchema>;
|
|
66
|
-
interface BaseExecutorResult {
|
|
67
|
-
error?: Error;
|
|
68
|
-
success?: boolean;
|
|
69
|
-
}
|
|
70
|
-
type BaseGeneratorOptions<TGeneratorSchema extends BaseGeneratorSchema = BaseGeneratorSchema> = BaseWorkspaceToolOptions<TGeneratorSchema>;
|
|
71
|
-
interface BaseGeneratorResult extends Record<string, any> {
|
|
72
|
-
error?: Error;
|
|
73
|
-
success?: boolean;
|
|
74
|
-
data?: any;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
export { type BaseExecutorOptions as B, type Entry as E, type TsupContext as T, type WorkspaceToolHooks as W, type BaseExecutorResult as a, type BaseGeneratorOptions as b, type BaseGeneratorResult as c, type BaseTypescriptPluginOptions as d, type BaseWorkspaceToolOptions as e, type BuildOptions as f, TypescriptProjectLinkingType as g, type BaseExecutorSchema as h, type BaseGeneratorSchema as i };
|
|
@@ -1,243 +0,0 @@
|
|
|
1
|
-
import * as z$1 from 'zod';
|
|
2
|
-
import * as z from 'zod/v4/mini';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
6
|
-
*/
|
|
7
|
-
declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
8
|
-
$schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
9
|
-
extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
10
|
-
name: z.ZodMiniString<string>;
|
|
11
|
-
variant: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
12
|
-
minimal: "minimal";
|
|
13
|
-
monorepo: "monorepo";
|
|
14
|
-
}>>;
|
|
15
|
-
namespace: z.ZodMiniString<string>;
|
|
16
|
-
organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
17
|
-
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
18
|
-
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
19
|
-
logo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
20
|
-
icon: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
21
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
22
|
-
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
23
|
-
repository: z.ZodMiniString<string>;
|
|
24
|
-
license: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
25
|
-
homepage: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
26
|
-
docs: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
27
|
-
portal: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
28
|
-
licensing: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
29
|
-
contact: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
30
|
-
support: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
31
|
-
branch: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
32
|
-
preid: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
33
|
-
owner: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
34
|
-
bot: z.ZodMiniObject<{
|
|
35
|
-
name: z.ZodMiniString<string>;
|
|
36
|
-
email: z.ZodMiniString<string>;
|
|
37
|
-
}, z.core.$strip>;
|
|
38
|
-
release: z.ZodMiniObject<{
|
|
39
|
-
banner: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
40
|
-
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
41
|
-
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
42
|
-
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
43
|
-
header: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
44
|
-
footer: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
45
|
-
}, z.core.$strip>;
|
|
46
|
-
socials: z.ZodMiniObject<{
|
|
47
|
-
twitter: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
48
|
-
discord: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
49
|
-
telegram: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
50
|
-
slack: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
51
|
-
medium: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
52
|
-
github: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
53
|
-
}, z.core.$strip>;
|
|
54
|
-
error: z.ZodMiniObject<{
|
|
55
|
-
codesFile: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
56
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
57
|
-
}, z.core.$strip>;
|
|
58
|
-
mode: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
59
|
-
development: "development";
|
|
60
|
-
test: "test";
|
|
61
|
-
production: "production";
|
|
62
|
-
}>>;
|
|
63
|
-
workspaceRoot: z.ZodMiniString<string>;
|
|
64
|
-
skipCache: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
65
|
-
directories: z.ZodMiniObject<{
|
|
66
|
-
cache: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
67
|
-
data: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
68
|
-
config: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
69
|
-
temp: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
70
|
-
log: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
71
|
-
build: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
72
|
-
}, z.core.$strip>;
|
|
73
|
-
packageManager: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
74
|
-
npm: "npm";
|
|
75
|
-
yarn: "yarn";
|
|
76
|
-
pnpm: "pnpm";
|
|
77
|
-
bun: "bun";
|
|
78
|
-
}>>;
|
|
79
|
-
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
80
|
-
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
81
|
-
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
82
|
-
error: "error";
|
|
83
|
-
success: "success";
|
|
84
|
-
silent: "silent";
|
|
85
|
-
fatal: "fatal";
|
|
86
|
-
warn: "warn";
|
|
87
|
-
info: "info";
|
|
88
|
-
performance: "performance";
|
|
89
|
-
debug: "debug";
|
|
90
|
-
trace: "trace";
|
|
91
|
-
all: "all";
|
|
92
|
-
}>>;
|
|
93
|
-
skipConfigLogging: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
94
|
-
registry: z.ZodMiniDefault<z.ZodMiniObject<{
|
|
95
|
-
github: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
96
|
-
npm: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
97
|
-
cargo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
98
|
-
cyclone: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
99
|
-
container: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
100
|
-
}, z.core.$strip>>;
|
|
101
|
-
configFile: z.ZodMiniDefault<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
102
|
-
colors: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
103
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
104
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
105
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
106
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
107
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
108
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
109
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
110
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
111
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
112
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
113
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
114
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
115
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
116
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
117
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
118
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
119
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
120
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
121
|
-
dark: z.ZodMiniObject<{
|
|
122
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
123
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
124
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
125
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
126
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
127
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
128
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
129
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
130
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
131
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
132
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
133
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
134
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
135
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
136
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
137
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
138
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
139
|
-
}, z.core.$strip>;
|
|
140
|
-
light: z.ZodMiniObject<{
|
|
141
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
142
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
143
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
144
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
145
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
146
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
147
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
148
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
149
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
150
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
151
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
152
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
153
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
154
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
155
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
156
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
157
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
158
|
-
}, z.core.$strip>;
|
|
159
|
-
}, z.core.$strip>]>, z.ZodMiniRecord<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"base">, z.ZodMiniString<string>]>, z.ZodMiniString<string>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
160
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
161
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
162
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
163
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
164
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
165
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
166
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
167
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
168
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
169
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
170
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
171
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
172
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
173
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
174
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
175
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
176
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
177
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
178
|
-
dark: z.ZodMiniObject<{
|
|
179
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
180
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
181
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
182
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
183
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
184
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
185
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
186
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
187
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
188
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
189
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
190
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
191
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
192
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
193
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
194
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
195
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
196
|
-
}, z.core.$strip>;
|
|
197
|
-
light: z.ZodMiniObject<{
|
|
198
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
199
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
200
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
201
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
202
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
203
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
204
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
205
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
206
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
207
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
208
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
209
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
210
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
211
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
212
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
213
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
214
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
215
|
-
}, z.core.$strip>;
|
|
216
|
-
}, z.core.$strip>]>>]>;
|
|
217
|
-
extensions: z.ZodMiniDefault<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniAny>>;
|
|
218
|
-
}, z.core.$strip>;
|
|
219
|
-
|
|
220
|
-
type TStormWorkspaceConfig = z$1.infer<typeof workspaceConfigSchema>;
|
|
221
|
-
/**
|
|
222
|
-
* The Storm workspace's configuration object
|
|
223
|
-
*
|
|
224
|
-
* @remarks
|
|
225
|
-
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
226
|
-
*
|
|
227
|
-
* @deprecated
|
|
228
|
-
* This type is deprecated and will be removed in the next major version. Use {@link StormWorkspaceConfig} instead.
|
|
229
|
-
*/
|
|
230
|
-
type StormConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = TStormWorkspaceConfig & {
|
|
231
|
-
extensions: (TStormWorkspaceConfig["extensions"] & {
|
|
232
|
-
[extensionName in TExtensionName]: TExtensionConfig;
|
|
233
|
-
}) | NonNullable<Record<string, any>>;
|
|
234
|
-
};
|
|
235
|
-
/**
|
|
236
|
-
* The Storm workspace's configuration object
|
|
237
|
-
*
|
|
238
|
-
* @remarks
|
|
239
|
-
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
240
|
-
*/
|
|
241
|
-
type StormWorkspaceConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = StormConfig<TExtensionName, TExtensionConfig>;
|
|
242
|
-
|
|
243
|
-
export type { StormWorkspaceConfig as S };
|
package/dist/types-DwFGBJr1.d.ts
DELETED
|
@@ -1,243 +0,0 @@
|
|
|
1
|
-
import * as z$1 from 'zod';
|
|
2
|
-
import * as z from 'zod/v4/mini';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
6
|
-
*/
|
|
7
|
-
declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
8
|
-
$schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
9
|
-
extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
10
|
-
name: z.ZodMiniString<string>;
|
|
11
|
-
variant: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
12
|
-
minimal: "minimal";
|
|
13
|
-
monorepo: "monorepo";
|
|
14
|
-
}>>;
|
|
15
|
-
namespace: z.ZodMiniString<string>;
|
|
16
|
-
organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
17
|
-
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
18
|
-
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
19
|
-
logo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
20
|
-
icon: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
21
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
22
|
-
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
23
|
-
repository: z.ZodMiniString<string>;
|
|
24
|
-
license: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
25
|
-
homepage: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
26
|
-
docs: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
27
|
-
portal: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
28
|
-
licensing: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
29
|
-
contact: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
30
|
-
support: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
31
|
-
branch: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
32
|
-
preid: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
33
|
-
owner: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
34
|
-
bot: z.ZodMiniObject<{
|
|
35
|
-
name: z.ZodMiniString<string>;
|
|
36
|
-
email: z.ZodMiniString<string>;
|
|
37
|
-
}, z.core.$strip>;
|
|
38
|
-
release: z.ZodMiniObject<{
|
|
39
|
-
banner: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
40
|
-
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
41
|
-
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
42
|
-
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
43
|
-
header: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
44
|
-
footer: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
45
|
-
}, z.core.$strip>;
|
|
46
|
-
socials: z.ZodMiniObject<{
|
|
47
|
-
twitter: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
48
|
-
discord: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
49
|
-
telegram: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
50
|
-
slack: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
51
|
-
medium: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
52
|
-
github: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
53
|
-
}, z.core.$strip>;
|
|
54
|
-
error: z.ZodMiniObject<{
|
|
55
|
-
codesFile: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
56
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
57
|
-
}, z.core.$strip>;
|
|
58
|
-
mode: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
59
|
-
development: "development";
|
|
60
|
-
test: "test";
|
|
61
|
-
production: "production";
|
|
62
|
-
}>>;
|
|
63
|
-
workspaceRoot: z.ZodMiniString<string>;
|
|
64
|
-
skipCache: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
65
|
-
directories: z.ZodMiniObject<{
|
|
66
|
-
cache: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
67
|
-
data: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
68
|
-
config: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
69
|
-
temp: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
70
|
-
log: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
71
|
-
build: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
72
|
-
}, z.core.$strip>;
|
|
73
|
-
packageManager: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
74
|
-
npm: "npm";
|
|
75
|
-
yarn: "yarn";
|
|
76
|
-
pnpm: "pnpm";
|
|
77
|
-
bun: "bun";
|
|
78
|
-
}>>;
|
|
79
|
-
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
80
|
-
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
81
|
-
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
82
|
-
error: "error";
|
|
83
|
-
success: "success";
|
|
84
|
-
silent: "silent";
|
|
85
|
-
fatal: "fatal";
|
|
86
|
-
warn: "warn";
|
|
87
|
-
info: "info";
|
|
88
|
-
performance: "performance";
|
|
89
|
-
debug: "debug";
|
|
90
|
-
trace: "trace";
|
|
91
|
-
all: "all";
|
|
92
|
-
}>>;
|
|
93
|
-
skipConfigLogging: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
94
|
-
registry: z.ZodMiniDefault<z.ZodMiniObject<{
|
|
95
|
-
github: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
96
|
-
npm: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
97
|
-
cargo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
98
|
-
cyclone: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
99
|
-
container: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
100
|
-
}, z.core.$strip>>;
|
|
101
|
-
configFile: z.ZodMiniDefault<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
102
|
-
colors: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
103
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
104
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
105
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
106
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
107
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
108
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
109
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
110
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
111
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
112
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
113
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
114
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
115
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
116
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
117
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
118
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
119
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
120
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
121
|
-
dark: z.ZodMiniObject<{
|
|
122
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
123
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
124
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
125
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
126
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
127
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
128
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
129
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
130
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
131
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
132
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
133
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
134
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
135
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
136
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
137
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
138
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
139
|
-
}, z.core.$strip>;
|
|
140
|
-
light: z.ZodMiniObject<{
|
|
141
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
142
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
143
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
144
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
145
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
146
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
147
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
148
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
149
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
150
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
151
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
152
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
153
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
154
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
155
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
156
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
157
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
158
|
-
}, z.core.$strip>;
|
|
159
|
-
}, z.core.$strip>]>, z.ZodMiniRecord<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"base">, z.ZodMiniString<string>]>, z.ZodMiniString<string>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
160
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
161
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
162
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
163
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
164
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
165
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
166
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
167
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
168
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
169
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
170
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
171
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
172
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
173
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
174
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
175
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
176
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
177
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
178
|
-
dark: z.ZodMiniObject<{
|
|
179
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
180
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
181
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
182
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
183
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
184
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
185
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
186
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
187
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
188
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
189
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
190
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
191
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
192
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
193
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
194
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
195
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
196
|
-
}, z.core.$strip>;
|
|
197
|
-
light: z.ZodMiniObject<{
|
|
198
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
199
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
200
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
201
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
202
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
203
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
204
|
-
discovery: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
205
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
206
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
207
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
208
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
209
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
210
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
211
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
212
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
213
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
214
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
215
|
-
}, z.core.$strip>;
|
|
216
|
-
}, z.core.$strip>]>>]>;
|
|
217
|
-
extensions: z.ZodMiniDefault<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniAny>>;
|
|
218
|
-
}, z.core.$strip>;
|
|
219
|
-
|
|
220
|
-
type TStormWorkspaceConfig = z$1.infer<typeof workspaceConfigSchema>;
|
|
221
|
-
/**
|
|
222
|
-
* The Storm workspace's configuration object
|
|
223
|
-
*
|
|
224
|
-
* @remarks
|
|
225
|
-
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
226
|
-
*
|
|
227
|
-
* @deprecated
|
|
228
|
-
* This type is deprecated and will be removed in the next major version. Use {@link StormWorkspaceConfig} instead.
|
|
229
|
-
*/
|
|
230
|
-
type StormConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = TStormWorkspaceConfig & {
|
|
231
|
-
extensions: (TStormWorkspaceConfig["extensions"] & {
|
|
232
|
-
[extensionName in TExtensionName]: TExtensionConfig;
|
|
233
|
-
}) | NonNullable<Record<string, any>>;
|
|
234
|
-
};
|
|
235
|
-
/**
|
|
236
|
-
* The Storm workspace's configuration object
|
|
237
|
-
*
|
|
238
|
-
* @remarks
|
|
239
|
-
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
240
|
-
*/
|
|
241
|
-
type StormWorkspaceConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = StormConfig<TExtensionName, TExtensionConfig>;
|
|
242
|
-
|
|
243
|
-
export type { StormWorkspaceConfig as S };
|