14 lines
230 B
TypeScript
14 lines
230 B
TypeScript
// See https://svelte.dev/docs/kit/types#app.d.ts
|
|
// for information about these interfaces
|
|
declare global {
|
|
namespace App {
|
|
interface Platform {
|
|
env: Env;
|
|
cf: CfProperties;
|
|
ctx: ExecutionContext;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|