types(Tooltip): add interface

This commit is contained in:
Benjamin Canac
2024-01-15 14:47:16 +01:00
parent e0977b2933
commit 033fcfacd8
2 changed files with 8 additions and 0 deletions

View File

@@ -22,5 +22,6 @@ export * from './select'
export * from './tabs'
export * from './textarea'
export * from './toggle'
export * from './tooltip'
export * from './vertical-navigation'
export * from './utils'

7
src/runtime/types/tooltip.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
export interface Tooltip {
text?: string
prevent?: boolean
shortcuts?: string[]
openDelay?: number
closeDelay?: number
}