12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
declare module "SERVER" {
|
|
export { Server } from "@sveltejs/kit";
|
|
}
|
|
|
|
declare module "MANIFEST" {
|
|
import { SSRManifest } from "@sveltejs/kit";
|
|
|
|
export const manifest: SSRManifest;
|
|
export const prerendered: Set<string>;
|
|
export const app_path: string;
|
|
}
|