export interface KeyValue<T> {
  [key: string]: T;
}
