mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 17:46:44 -06:00
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);
|