vitepress-openapi
Version:
Generate VitePress API Documentation from OpenAPI Specification.
16 lines (15 loc) • 669 B
TypeScript
import type { OpenAPIV3 } from '@scalar/openapi-types';
interface Props {
href?: string;
method?: OpenAPIV3.HttpMethods | string;
title?: string;
operationId?: string;
}
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
title: string;
operationId: string;
method: OpenAPIV3.HttpMethods | string;
href: string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: typeof __VLS_export;
export default _default;