UNPKG

@igli.kokici/st-open-api

Version:

Generates API client SDKs from an OpenAPI specification written in OpenAPI version 3.x.x

8 lines (7 loc) 364 B
import { IOrderedPaths } from "../interface/i-ordered-paths"; import { IOpenApi } from "../interface/open-api-mine/i-open-api"; export declare const orderedPath: (openApi: IOpenApi) => IOrderedPaths; export declare const groupPath: (paths: string[], pathSplitLevel?: number) => GroupedPath; export interface GroupedPath { [groupName: string]: Array<string>; }