(READ ONLY) Margin is an open annotation layer for the internet. Powered by the AT Protocol.
margin.at
extension
web
atproto
comments
1/// <reference types="astro/client" />
2
3declare module "virtual:i18n-resources" {
4 export const resources: Record<
5 string,
6 { translation: Record<string, unknown> }
7 >;
8}
9
10declare module "virtual:i18n-languages" {
11 export const languages: { code: string; name: string; nativeName: string }[];
12}
13
14declare namespace App {
15 interface Locals {
16 user: import("./types").UserProfile | null;
17 }
18}
19
20interface Window {
21 __posthog_initialized?: boolean;
22 posthog?: import("posthog-js").PostHog;
23}