aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/types/register-client-option.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/types/register-client-option.model.ts')
-rw-r--r--client/src/types/register-client-option.model.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/client/src/types/register-client-option.model.ts b/client/src/types/register-client-option.model.ts
index 59bcbc5ff..3415ef08f 100644
--- a/client/src/types/register-client-option.model.ts
+++ b/client/src/types/register-client-option.model.ts
@@ -30,16 +30,16 @@ export type RegisterClientHelpers = {
30 getServerConfig: () => Promise<ServerConfig> 30 getServerConfig: () => Promise<ServerConfig>
31 31
32 notifier: { 32 notifier: {
33 info: (text: string, title?: string, timeout?: number) => void, 33 info: (text: string, title?: string, timeout?: number) => void
34 error: (text: string, title?: string, timeout?: number) => void, 34 error: (text: string, title?: string, timeout?: number) => void
35 success: (text: string, title?: string, timeout?: number) => void 35 success: (text: string, title?: string, timeout?: number) => void
36 } 36 }
37 37
38 showModal: (input: { 38 showModal: (input: {
39 title: string, 39 title: string
40 content: string, 40 content: string
41 close?: boolean, 41 close?: boolean
42 cancel?: { value: string, action?: () => void }, 42 cancel?: { value: string, action?: () => void }
43 confirm?: { value: string, action?: () => void } 43 confirm?: { value: string, action?: () => void }
44 }) => void 44 }) => void
45 45