misskey/packages/frontend/@types/theme.d.ts
2024-02-13 15:59:27 +00:00

13 lines
233 B
TypeScript

/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
declare module '@/themes/*.json5' {
import { Theme } from '@/scripts/theme.js';
const theme: Theme;
export default theme;
}