6 lines
200 B
TypeScript
6 lines
200 B
TypeScript
|
import * as misskey from 'misskey-js';
|
||
|
import { Cache } from '@/scripts/cache';
|
||
|
|
||
|
export const clipsCache = new Cache<misskey.entities.Clip[]>(Infinity);
|
||
|
export const rolesCache = new Cache(Infinity);
|