Type Alias EndpointArgs<EndpointsConst, EndpointsType, T>

EndpointArgs<EndpointsConst, EndpointsType, T>: T extends keyof EndpointsType
    ? [T, EndpointsType[T]]
    : [T]

Type Parameters