Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
chore: wip

chore: wip

chore: wip
  • Loading branch information
chrisbbreuer committed Nov 4, 2024
1 parent aff343c commit d28d9dd
Show file tree
Hide file tree
Showing 2 changed files with 175 additions and 158 deletions.
2 changes: 1 addition & 1 deletion fixtures/output/function.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ export declare function processData(data: unknown): unknown;
export declare function complexAsyncGenerator(): any;
export declare function isUser(value: unknown): value is User;
export declare function extractFunctionSignature(declaration: string): FunctionSignature;
export declare function createApi<T extends Record<string, (...args: any[]) => any>(): void;
export declare function createApi<T extends Record<string, (...args: any[]) => any>(endpoints: T): { [K in keyof T]: ReturnType<T[K]> extends Promise<infer R> ? R : ReturnType<T[K]> } { return {} as any };
Loading

0 comments on commit d28d9dd

Please sign in to comment.