UNPKG

@quasarwork/qwik-city-nprogress

Version:

A simple Qwik City progress bar component using NProgress.

10 lines (9 loc) 274 B
import type { NProgressOptions } from 'nprogress'; interface Props { options?: Partial<NProgressOptions> & Partial<{ color: string; height: string; }>; } export declare const QwikCityNprogress: import("@builder.io/qwik").Component<Props>; export {};