export type ObjKeyValue = {
  [key: string]: number;
};

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

Homonyms

cyb/src/types/data.d.ts

Graph