UNPKG

@scalar/api-reference

Version:

Generate beautiful API references from OpenAPI documents

16 lines 497 B
import type { TraversedEntry } from '@scalar/workspace-store/schemas/navigation'; export type EntryType = 'operation' | 'webhook' | 'model' | 'heading' | 'tag'; export type FuseData = { type: EntryType; id: string; title: string; description: string; body?: string | string[]; parameters?: string | string[]; responseExamples?: string[]; method?: string; path?: string; operationId?: string; entry: TraversedEntry; }; //# sourceMappingURL=types.d.ts.map