anentrypoint-design 0.0.399 → 0.0.400

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,106 @@
1
+ // types/index.d.ts -- GENERATED, do not hand-edit.
2
+ //
3
+ // The package entry surface, enumerated from src/index.js's real export
4
+ // statements by `node scripts/generate-component-types.mjs`. Component
5
+ // props live in ./components.d.ts, generated from the same extraction as
6
+ // docs/component-props.md. `npm run lint:component-types` fails CI when
7
+ // either file is stale.
8
+
9
+ export * from './components.js';
10
+ import type { VNode } from './components.js';
11
+ export type { VNode };
12
+
13
+ /** Every component in the SDK, keyed by name (`components.AppShell({...})`). */
14
+ export declare const components: typeof import('./components.js');
15
+
16
+ export declare function applyTheme(...args: any[]): any;
17
+ export declare function getTheme(...args: any[]): any;
18
+ export declare function resolvedTheme(...args: any[]): any;
19
+ export declare function onThemeChange(...args: any[]): any;
20
+ export declare function initTheme(...args: any[]): any;
21
+ export declare function applyAccent(...args: any[]): any;
22
+ export declare function getAccent(...args: any[]): any;
23
+ export declare function applyDensity(...args: any[]): any;
24
+ export declare function getDensity(...args: any[]): any;
25
+ export declare function extractAtQuery(...args: any[]): any;
26
+ export declare function buildEntriesFromFiles(...args: any[]): any;
27
+ export declare function filterFileEntries(...args: any[]): any;
28
+ export declare function buildAtInsertText(...args: any[]): any;
29
+ export declare function buildAtMentionText(...args: any[]): any;
30
+ export declare function buildFileAtMentionsText(...args: any[]): any;
31
+ export declare function renderLoadingScreen(...args: any[]): any;
32
+ export declare function renderGameHud(...args: any[]): any;
33
+ export declare function Crosshair(...args: any[]): any;
34
+ export declare function AmmoCounter(...args: any[]): any;
35
+ export declare function HealthBar(...args: any[]): any;
36
+ export declare function BoostIndicator(...args: any[]): any;
37
+ export declare function renderHostJoinLobby(...args: any[]): any;
38
+ export declare const webjsx: Record<string, any>;
39
+ export declare function loadCss(...args: any[]): any;
40
+ export declare function registerDeckStage(...args: any[]): Promise<any>;
41
+ export declare function getDeckStage(...args: any[]): any;
42
+ export declare class Router { constructor(...args: any[]); [key: string]: any; }
43
+ export declare function createRouter(...args: any[]): any;
44
+ export declare const motion: Record<string, any>;
45
+ export declare const debug: Record<string, any>;
46
+ export declare function mountKit(...args: any[]): any;
47
+ export declare function renderMarkdown(...args: any[]): Promise<any>;
48
+ export declare function ensureMarkdownReady(...args: any[]): any;
49
+ export declare function sanitizeHtml(...args: any[]): Promise<any>;
50
+ export declare function isMarkdownDegraded(...args: any[]): any;
51
+ export declare function configureMarkdownCdn(...args: any[]): any;
52
+ export declare function getMarkdownCdnConfig(...args: any[]): any;
53
+ export declare function ensurePrism(...args: any[]): Promise<any>;
54
+ export declare function highlightAllUnder(...args: any[]): Promise<any>;
55
+ export declare function configurePrismCdn(...args: any[]): any;
56
+ export declare function getPrismCdnConfig(...args: any[]): any;
57
+ export declare function ensureMermaid(...args: any[]): Promise<any>;
58
+ export declare function renderMermaid(...args: any[]): Promise<any>;
59
+ export declare function renderMermaidBlocksUnder(...args: any[]): Promise<any>;
60
+ export declare function configureMermaidCdn(...args: any[]): any;
61
+ export declare function getMermaidCdnConfig(...args: any[]): any;
62
+ export declare function ensureKatex(...args: any[]): Promise<any>;
63
+ export declare function renderMathBlocksUnder(...args: any[]): Promise<any>;
64
+ export declare function configureKatexCdn(...args: any[]): any;
65
+ export declare function getKatexCdnConfig(...args: any[]): any;
66
+ export declare function registerChatElement(...args: any[]): any;
67
+ export declare function DsChat(...args: any[]): any;
68
+ export declare function registerFreddieChatElement(...args: any[]): any;
69
+ export declare function FreddieChat(...args: any[]): any;
70
+ export declare function renderPageHtml(...args: any[]): any;
71
+ export declare function escapeHtml(...args: any[]): any;
72
+ export declare function escapeJson(...args: any[]): any;
73
+ export declare function uid(...args: any[]): any;
74
+ export declare function shortUid(...args: any[]): any;
75
+ export declare const theme: Record<string, any>;
76
+ export declare function t(...args: any[]): any;
77
+ export declare function registerLocale(...args: any[]): any;
78
+ export declare function getLocale(...args: any[]): any;
79
+ export declare function setLocale(...args: any[]): any;
80
+ export declare function availableLocales(...args: any[]): any;
81
+ export declare function formatTime(...args: any[]): any;
82
+ export declare function formatDateTime(...args: any[]): any;
83
+ export declare function formatNumber(...args: any[]): any;
84
+ export declare function formatRelativeTime(...args: any[]): any;
85
+ export declare function queueMessage(...args: any[]): Promise<any>;
86
+ export declare function listQueued(...args: any[]): Promise<any>;
87
+ export declare function flushQueue(...args: any[]): Promise<any>;
88
+ export declare function watchReconnect(...args: any[]): any;
89
+ export declare function isOnline(...args: any[]): any;
90
+ export declare function createVirtualizer(...args: any[]): any;
91
+ export declare function measureRef(...args: any[]): any;
92
+ export declare function applyMotion(...args: any[]): any;
93
+ export declare function getMotion(...args: any[]): any;
94
+ export declare function isMotionReduced(...args: any[]): any;
95
+ export declare function onMotionChange(...args: any[]): any;
96
+ export declare function initMotion(...args: any[]): any;
97
+ export declare function installStyles(...args: any[]): Promise<any>;
98
+ export declare function mount(...args: any[]): any;
99
+ export declare function h(...args: any[]): any;
100
+ export declare function applyDiff(...args: any[]): any;
101
+
102
+ /** The scope class every SDK stylesheet rule is prefixed with. */
103
+ export declare const scope: string;
104
+
105
+ declare const _default: Record<string, any>;
106
+ export default _default;