feat: display version

This commit is contained in:
Anthony Fu 2022-12-26 20:33:19 +01:00
parent ee63bcb1b2
commit e8dde2c2ba
6 changed files with 61 additions and 10 deletions

View file

@ -65,3 +65,10 @@ export interface Draft {
attachments: Attachment[]
}
export type DraftMap = Record<string, Draft>
export interface BuildInfo {
version: string
commit: string
time: number
branch: string
}