vexip-ui
Version:
A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good
7 lines (6 loc) • 342 B
TypeScript
export type ProgressInfoType = 'outside' | 'inside' | 'bubble' | 'bubble-top' | 'bubble-bottom' | 'none';
export type ProgressStrokeColor = string | [string, string] | ((percentage: number) => string | [string, string]);
export interface ProgressSlots {
default?: () => any;
}
export declare const infoTypes: readonly ProgressInfoType[];