UNPKG

@patchworkdev/pdk

Version:

Patchwork Development Kit

10 lines 273 B
interface APIRoute { name: string; type: 'query' | 'mutation' | 'subscription'; } interface APIStructure { [key: string]: APIRoute | APIStructure; } export declare function analyzeAPI(filePath: string): APIStructure; export {}; //# sourceMappingURL=api.d.ts.map