7 lines
131 B
TypeScript
7 lines
131 B
TypeScript
export interface ImportMetaExtras extends ImportMeta {
|
|
env: {
|
|
APP_URL: string;
|
|
[key: string]: string;
|
|
};
|
|
}
|