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.

16 lines (15 loc) 513 B
import { DefineSetupFnComponent } from "vue"; //#region src/app/components/nuxt-loading-indicator.d.ts interface NuxtLoadingIndicatorProps { throttle?: number; duration?: number; hideDelay?: number; resetDelay?: number; height?: number; color?: string | boolean; errorColor?: string; estimatedProgress?: (duration: number, elapsed: number) => number; } declare const NuxtLoadingIndicator: DefineSetupFnComponent<NuxtLoadingIndicatorProps>; //#endregion export { NuxtLoadingIndicator as default };