@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
7 lines (6 loc) • 396 B
TypeScript
import type { SimpleProp } from './helpers/factory';
declare const LOADING_OPTIONS: readonly ["eager", "lazy"];
export type LoadingType = (typeof LOADING_OPTIONS)[number];
export type LoadingProp = SimpleProp<'loading', LoadingType>;
export declare const loadingProp: import("./helpers/factory").PropDefinition<import("./helpers/factory").InternalPropValue<LoadingProp>, LoadingProp>;
export {};