@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
9 lines (8 loc) • 332 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
declare const loadingOptions: readonly ["eager", "lazy"];
export type Loading = (typeof loadingOptions)[number];
export type PropLoading = {
loading: Loading;
};
export declare function validateLoading(component: Generic.Element.Component, value?: Loading): void;
export {};