blob: 6ac1037493e672d5f38e593fcfb5e51b0cd6ef69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
declare module '@@/themes/*.json5' {
import { Theme } from '@/theme.js';
const theme: Theme;
export default theme;
}
|