@bhooai/nexus-admin 2.0.0
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.
- package/package.json +31 -0
- package/src/App.tsx +4187 -0
- package/src/alertCenter.tsx +150 -0
- package/src/api.ts +478 -0
- package/src/assets/bhooai-nexus-logo.svg +25 -0
- package/src/index.css +2401 -0
- package/src/vite-env.d.ts +19 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// Ambient declarations that keep `@bhooai/admin` self-contained: it does
|
|
2
|
+
// not depend on the consumer having `vite/client` types installed. Vite /
|
|
3
|
+
// esbuild inject `import.meta.env` and resolve asset imports at runtime; the
|
|
4
|
+
// host project's build (vite build) handles actual bundling.
|
|
5
|
+
interface ImportMetaEnv {
|
|
6
|
+
readonly VITE_SUPERVISOR_URL?: string;
|
|
7
|
+
readonly [key: string]: string | undefined;
|
|
8
|
+
}
|
|
9
|
+
interface ImportMeta {
|
|
10
|
+
readonly env: ImportMetaEnv;
|
|
11
|
+
}
|
|
12
|
+
declare module '*.svg' {
|
|
13
|
+
const src: string;
|
|
14
|
+
export default src;
|
|
15
|
+
}
|
|
16
|
+
declare module '*.png' {
|
|
17
|
+
const src: string;
|
|
18
|
+
export default src;
|
|
19
|
+
}
|