gdq-archive/frontend/util/types.ts

2 lines
90 B
TypeScript
Raw Normal View History

2020-08-22 20:25:57 +00:00
export type UnboxPromise<T extends Promise<any>> = T extends Promise<infer U> ? U: never;