UNPKG

@scalar/api-reference

Version:

Generate beautiful API references from OpenAPI documents

15 lines 513 B
import type { TraversedEntry } from '@scalar/workspace-store/schemas/v3.1/strict/openapi-document'; import type { ParameterMap } from '../../libs/openapi.js'; export type EntryType = 'operation' | 'webhook' | 'model' | 'heading' | 'tag'; export type FuseData = { type: EntryType; id?: string; title: string; description: string; href: string; body?: string | string[] | ParameterMap; method?: string; path?: string; entry: TraversedEntry; }; //# sourceMappingURL=types.d.ts.map