9 lines
146 B
TypeScript
9 lines
146 B
TypeScript
type CacheVariables = {
|
|
CACHE_CONFIG: {
|
|
key: string;
|
|
duration: number;
|
|
};
|
|
};
|
|
|
|
export type AniwatchAPIVariables = {} & CacheVariables;
|