UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

38 lines (37 loc) 1.53 kB
export interface NuxtTimeProps { locale?: string; datetime: string | number | Date; localeMatcher?: 'best fit' | 'lookup'; weekday?: 'long' | 'short' | 'narrow'; era?: 'long' | 'short' | 'narrow'; year?: 'numeric' | '2-digit'; month?: 'numeric' | '2-digit' | 'long' | 'short' | 'narrow'; day?: 'numeric' | '2-digit'; hour?: 'numeric' | '2-digit'; minute?: 'numeric' | '2-digit'; second?: 'numeric' | '2-digit'; timeZoneName?: 'short' | 'long' | 'shortOffset' | 'longOffset' | 'shortGeneric' | 'longGeneric'; formatMatcher?: 'best fit' | 'basic'; hour12?: boolean; timeZone?: string; calendar?: string; dayPeriod?: 'narrow' | 'short' | 'long'; numberingSystem?: string; dateStyle?: 'full' | 'long' | 'medium' | 'short'; timeStyle?: 'full' | 'long' | 'medium' | 'short'; hourCycle?: 'h11' | 'h12' | 'h23' | 'h24'; relative?: boolean; numeric?: 'always' | 'auto'; relativeStyle?: 'long' | 'short' | 'narrow'; title?: boolean | string; } declare global { interface Window { _nuxtTimeNow?: number; } } declare const __VLS_export: import("vue").DefineComponent<NuxtTimeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NuxtTimeProps> & Readonly<{}>, { hour12: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;