Files
pichunt/index.d.ts
T
2025-08-02 00:58:40 +02:00

11 lines
255 B
TypeScript

declare module 'nuxt/schema' {
interface RuntimeConfig {
s3Bucket: string;
s3Host: string;
s3AccessKey: string;
s3SecretKey: string;
}
}
// It is always important to ensure you import/export something when augmenting a type
export {};