-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomponents.d.ts
More file actions
23 lines (22 loc) · 826 Bytes
/
components.d.ts
File metadata and controls
23 lines (22 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import type { DefineComponent } from 'vue'
declare module 'vue' {
interface GlobalComponents {
HankoAuth: DefineComponent<{
/**
* Currently supported values are "en" for English and "de" for German.
* If the value is omitted, "en" is used.
*/
lang?: 'bn' | 'de' | 'en' | 'fr' | 'it' | 'pt-BR' | 'zh' | (string & {})
/** A space-separated list of experimental features to be enabled. See experimental features. */
experimental?: string
}>
HankoProfile: DefineComponent<{
/**
* Currently supported values are "en" for English and "de" for German.
* If the value is omitted, "en" is used.
*/
lang?: 'bn' | 'de' | 'en' | 'fr' | 'it' | 'pt-BR' | 'zh' | (string & {})
}>
HankoEvents: DefineComponent<Record<string, unknown>>
}
}