@visulima/api-platform
Version:
Visulima API platform is a set of tools to build and consume web APIs
9 lines (6 loc) • 340 B
TypeScript
import { NextPage, InferGetStaticPropsType } from 'next/types';
import { getSwaggerStaticProps as getStaticProps } from '../../../index-browser.js';
declare const RedocApiDocument: (name: string, swagger?: Exclude<{
specUrl?: string;
}, "spec">) => NextPage<InferGetStaticPropsType<typeof getStaticProps>>;
export = RedocApiDocument;