2023-03-24 07:54:37 +00:00
|
|
|
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);
|
2023-03-24 07:58:57 +00:00
|
|
|
export const userListsCache = new Cache<misskey.entities.UserList[]>(Infinity);
|