cyb/src/types/data.d.ts

type KeyValue<T> = {
  [key: string]: T;
};

export type ObjKeyValue = KeyValue<number>;

export type KeyValueString = KeyValue<string>;

export type TabularKeyValues = { [key: string]: KeyValueString };

type ObjectKey<T> = {
  [key: string | number]: T;
};

Synonyms

pussy-ts/src/types/data.d.ts

Neighbours