@scalar/api-reference
Version:
Generate beautiful API references from OpenAPI documents
15 lines • 505 B
TypeScript
import type { TraversedEntry } from '@scalar/workspace-store/schemas/navigation';
import type { ParameterMap } from '../../helpers/openapi.js';
export type EntryType = 'operation' | 'webhook' | 'model' | 'heading' | 'tag';
export type FuseData = {
type: EntryType;
id: string;
title: string;
description: string;
body?: string | string[] | ParameterMap;
method?: string;
path?: string;
operationId?: string;
entry: TraversedEntry;
};
//# sourceMappingURL=types.d.ts.map