aboutsummaryrefslogtreecommitdiff
path: root/src/config/variables.ts
blob: b58316f75b9f6140afd3724d87df0f10ae3550a7 (plain)
1
2
3
4
5
6
7
8
type CacheVariables = {
  CACHE_CONFIG: {
    key: string;
    duration: number;
  };
};

export type AniwatchAPIVariables = {} & CacheVariables;