UNPKG

@7nohe/openapi-react-query-codegen

Version:
16 lines (15 loc) 548 B
import type { GeneratedFile } from "./types.mjs"; type ClientType = "@hey-api/client-fetch" | "@hey-api/client-axios"; /** * Create source files using ts-morph based generation. */ export declare const createSource: ({ outputPath, client, version, pageParam, nextPageParam, initialPageParam, omitInitialPageParam, }: { outputPath: string; client: ClientType; version: string; pageParam: string; nextPageParam: string; initialPageParam: string; omitInitialPageParam: boolean; }) => Promise<GeneratedFile[]>; export {};