initial commit

This commit is contained in:
Zoe
2023-01-03 09:29:04 -06:00
commit 7851137d88
12889 changed files with 2557443 additions and 0 deletions

13
node_modules/nuxt/dist/app/config.d.ts generated vendored Normal file
View 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 {};