UnwrapLoadables<T>: {
    [P in keyof T]: UnwrapLoadable<T[P]>
}

Type Parameters

  • T extends any[] | {
        [key: string]: any;
    }