UNPKG

bootstrap-vue

Version:

With more than 85 components, over 45 available plugins, several directives, and 1000+ icons, BootstrapVue provides one of the most comprehensive implementations of the Bootstrap v4 component and grid system available for Vue.js v2.6, complete with extens

28 lines (23 loc) 601 B
// --- Time --- import Vue from 'vue' import { BvPlugin, BvComponent } from '../../' // Plugin export declare const TimePlugin: BvPlugin // Component: b-time export declare class BTime extends BvComponent { focus: () => void blur: () => void } // --- Interfaces --- // Time context event object export interface BvTimeCtxEvent { readonly formatted: string readonly value: string readonly hours: number | null readonly minutes: number | null readonly seconds: number | null readonly hourCycle: string readonly hour12: boolean readonly locale: string readonly isRtl: boolean }