@tempots/std

Id type

Represents an identity type that preserves the properties of the original type.

Signature:

export type Id<T> = {} & {
    [P in keyof T]: T[P];
};