improve profile system

This commit is contained in:
Boof2015
2026-03-31 15:48:34 -04:00
parent 3a8a6dae75
commit d76abe38a8
11 changed files with 574 additions and 93 deletions
+15
View File
@@ -0,0 +1,15 @@
export interface DialogOptions {
type: 'confirm' | 'prompt'
title: string
message: string
detail?: string
buttons: string[]
defaultId?: number
cancelId?: number
defaultValue?: string
}
export interface DialogResult {
buttonIndex: number
value?: string
}