blob: 1a8df7fcf6cf41cf0d8f805454fd0bc859718a79 (
plain)
1
2
3
4
5
|
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);
|