lasthourcloud/apps/ui/src/app.d.ts

24 lines
507 B
TypeScript
Raw Normal View History

2022-07-06 09:02:36 +00:00
/// <reference types="@sveltejs/kit" />
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare namespace App {
// interface Locals {}
// interface Platform {}
// interface Session {}
interface Stuff {
service: any;
application: any;
isRunning: boolean;
appId: string;
readOnly: boolean;
source: string;
settings: string;
database: Record<string, any>;
versions: string;
privatePort: string;
}
}
2022-07-11 20:32:27 +00:00
declare const GITPOD_WORKSPACE_URL: string