claude-flow
Version:
Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration
30 lines (25 loc) • 658 B
TypeScript
/// <reference types="@sveltejs/kit" />
/// <reference types="unplugin-icons/types/svelte" />
import type { User } from "$lib/types/User";
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
sessionId: string;
user?: User;
isAdmin: boolean;
token?: string;
/** Organization to bill inference requests to (from settings) */
billingOrganization?: string;
}
interface Error {
message: string;
errorId?: ReturnType<typeof crypto.randomUUID>;
}
// interface PageData {}
// interface Platform {}
}
}
export {};