mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 05:37:21 +00:00
Co-authored-by: Darius Cepulis <dcepulis@mux.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
229 B
TypeScript
14 lines
229 B
TypeScript
/// <reference types="astro/client" />
|
|
/// <reference types="vite-plugin-svgr/client" />
|
|
|
|
declare namespace App {
|
|
interface Locals {
|
|
user?: {
|
|
name: string;
|
|
email: string;
|
|
};
|
|
|
|
accessToken?: string;
|
|
}
|
|
}
|