2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
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);
|
2023-07-10 06:55:10 +00:00
|
|
|
export const antennasCache = new Cache<misskey.entities.Antenna[]>(Infinity);
|