initial commit
This commit is contained in:
13
node_modules/nuxt/dist/app/config.d.ts
generated
vendored
Normal file
13
node_modules/nuxt/dist/app/config.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { AppConfig } from '@nuxt/schema';
|
||||
type DeepPartial<T> = T extends Function ? T : T extends Record<string, any> ? {
|
||||
[P in keyof T]?: DeepPartial<T[P]>;
|
||||
} : T;
|
||||
export declare const _getAppConfig: () => AppConfig;
|
||||
export declare function useAppConfig(): AppConfig;
|
||||
/**
|
||||
* Deep assign the current appConfig with the new one.
|
||||
*
|
||||
* Will preserve existing properties.
|
||||
*/
|
||||
export declare function updateAppConfig(appConfig: DeepPartial<AppConfig>): void;
|
||||
export {};
|
||||
Reference in New Issue
Block a user