@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
8 lines (7 loc) • 408 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
export declare const progressVariantOptions: readonly ["bar", "cycle"];
export type ProgressVariantPropType = (typeof progressVariantOptions)[number];
export type PropVariantProgress = {
variant: ProgressVariantPropType;
};
export declare const validateVariantProgress: (component: Generic.Element.Component, value?: ProgressVariantPropType) => void;