silgi 0.24.12 → 0.24.13
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/cli/index.mjs +1 -1
- package/dist/types/index.d.mts +6 -0
- package/package.json +1 -1
package/dist/cli/index.mjs
CHANGED
package/dist/types/index.d.mts
CHANGED
|
@@ -8,6 +8,8 @@ import { TSConfig } from 'pkg-types';
|
|
|
8
8
|
import { PresetName, PresetOptions, PresetNameInput } from 'silgi/presets';
|
|
9
9
|
import { ResolvedServiceType as ResolvedServiceType$1, SilgiRuntimeShareds as SilgiRuntimeShareds$1, SilgiRuntimeOptions as SilgiRuntimeOptions$1, RouteRules as RouteRules$1, ModuleMeta as ModuleMeta$1, SilgiModule as SilgiModule$1, SilgiRouteRules as SilgiRouteRules$1, DotenvOptions as DotenvOptions$1, EnvOptions as EnvOptions$1, SilgiRuntimeConfig as SilgiRuntimeConfig$1, ServiceParseModule as ServiceParseModule$1, SilgiCLIHooks as SilgiCLIHooks$1, StorageMounts as StorageMounts$1, SilgiTemplate as SilgiTemplate$1, SilgiFrameworkInfo as SilgiFrameworkInfo$1 } from 'silgi/types';
|
|
10
10
|
import { UnimportPluginOptions } from 'unimport/unplugin';
|
|
11
|
+
import { H3Event } from 'h3';
|
|
12
|
+
import { NitroRuntimeConfig } from 'nitropack/types';
|
|
11
13
|
import { Defu } from 'defu';
|
|
12
14
|
import { Stats } from 'node:fs';
|
|
13
15
|
import { Unimport } from 'unimport';
|
|
@@ -548,6 +550,10 @@ declare global {
|
|
|
548
550
|
$silgiSharedRuntimeConfig: SilgiRuntimeOptions;
|
|
549
551
|
}
|
|
550
552
|
}
|
|
553
|
+
var __nitro__: {
|
|
554
|
+
useRuntimeConfig?: <T extends NitroRuntimeConfig = NitroRuntimeConfig>(event?: H3Event) => T;
|
|
555
|
+
[key: string]: any;
|
|
556
|
+
};
|
|
551
557
|
}
|
|
552
558
|
|
|
553
559
|
type SilgiPreset = SilgiCLIConfig | (() => SilgiCLIConfig);
|