UNPKG

vue3-radial-progress

Version:

A smart and light radial progress bar component for Vue 3.

9 lines (8 loc) 284 B
import { Plugin } from "vue"; export * from "./types"; import component from "./RadialProgress.vue"; declare type InstallableComponent = typeof component & { install: Exclude<Plugin["install"], undefined>; }; declare const _default: InstallableComponent; export default _default;