feat: about

This commit is contained in:
2023-11-03 02:39:42 +09:00
parent 2f1d48792a
commit 71a05dd13c
6 changed files with 756 additions and 1 deletions

View File

@ -30,6 +30,11 @@ declare module "translations/*.json" {
export default value;
}
declare module "*.md" {
const value: string;
export default value;
}
declare module "emojilib" {
const value: Record<string, string>;
export default value;
@ -61,3 +66,8 @@ declare const CONFIG: {
* Single relay (Debug)
*/
declare const SINGLE_RELAY: string | undefined;
/**
* Build git hash
*/
declare const GIT_VERSION: string;