Poq.SDK.Node

Home > @poq/transform > Indexed

Indexed type

Type utility to defines type which properties can be accessed via indexing.

Signature:

export declare type Indexed<T> = {
    [K in keyof T]: T[K];
};