mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-06-17 10:34:13 +00:00
23 lines
462 B
TypeScript
23 lines
462 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module "*.png" {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
|
|
declare module "*.svg" {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
|
|
declare module "virtual:docs-search-index" {
|
|
interface SectionEntry {
|
|
pageTitle: string;
|
|
pageSlug: string;
|
|
sectionTitle: string;
|
|
sectionId: string;
|
|
persona: "developer" | "operator" | "contributor";
|
|
}
|
|
export const SECTION_INDEX: SectionEntry[];
|
|
}
|