blob: c95da64bbaebd23be9cd8f700ae7adca8be2e69d (
plain)
1
2
3
4
5
6
|
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);
export const userListsCache = new Cache<misskey.entities.UserList[]>(Infinity);
|