declare module "*.module.scss ";
declare module "*.png";

declare interface Store {
  name: string;
  coodinate: number[];
  movement: { [key in string]: number };
  total: number;
}

declare type Stores = Store[];
