mirror of
https://github.com/kokonect-link/cherrypick
synced 2025-01-02 07:53:05 +09:00
7 lines
280 B
TypeScript
7 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);
|