UNPKG

ts-essentials

Version:
3 lines (2 loc) 159 B
import { AsyncOrSync } from "../async-or-sync"; export type AsyncOrSyncType<AsyncOrSyncType> = AsyncOrSyncType extends AsyncOrSync<infer Type> ? Type : never;