- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
10 lines
483 B
TypeScript
10 lines
483 B
TypeScript
export declare const fetch: typeof globalThis.fetch;
|
|
export declare const Blob: typeof globalThis.Blob;
|
|
export declare const File: typeof globalThis.File;
|
|
export declare const FormData: typeof globalThis.FormData;
|
|
export declare const Headers: typeof globalThis.Headers;
|
|
export declare const Request: typeof globalThis.Request;
|
|
export declare const Response: typeof globalThis.Response;
|
|
export declare const AbortController: typeof globalThis.AbortController;
|
|
|
|
export default fetch;
|