2024-07-13 21:12:38 +02:00

11 lines
217 B
TypeScript

/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
declare namespace App {
interface Locals {
currentLocale: string;
sdkCalls: Set<string>;
pageCaching: boolean;
}
}