vuetify
Version:
Vue Material Component Framework
29 lines (25 loc) • 558 B
TypeScript
// Types
import Vue from 'vue'
type VuetifyGoToTarget = number | string | HTMLElement | Vue
export type VuetifyGoToEasing =
((t: number) => number) |
'linear' |
'easeInQuad' |
'easeOutQuad' |
'easeInOutQuad' |
'easeInCubic' |
'easeOutCubic' |
'easeInOutCubic' |
'easeInQuart' |
'easeOutQuart' |
'easeInOutQuart' |
'easeInQuint' |
'easeOutQuint' |
'easeInOutQuint'
export interface GoToOptions {
container?: string | HTMLElement | Vue
duration?: number
offset?: number
easing?: VuetifyGoToEasing
appOffset?: boolean
}