RestToKeys

Signature

export type RestToKeys<T extends unknown[]> = T extends [    infer V,    ...infer Keys] ? {    [K in Extract<Keys[number], string>]: V;} : never;

Private types

KeysTypeAlias
type Keys<T> = keyof T;

Members

This export does not declare public properties or methods in the generated declaration file.