mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 06:53:08 +02:00
6 lines
280 B
TypeScript
6 lines
280 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);
|
|
export const userListsCache = new Cache<misskey.entities.UserList[]>(Infinity);
|