2023-07-26 22:31:52 -07:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-03-24 00:54:37 -07: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 00:58:57 -07:00
|
|
|
export const userListsCache = new Cache<misskey.entities.UserList[]>(Infinity);
|
2023-07-09 23:55:10 -07:00
|
|
|
export const antennasCache = new Cache<misskey.entities.Antenna[]>(Infinity);
|