UNPKG

159 BTypeScriptView Raw
1import { AsyncOrSync } from "../async-or-sync";
2export type AsyncOrSyncType<AsyncOrSyncType> = AsyncOrSyncType extends AsyncOrSync<infer Type> ? Type : never;