@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
8 lines (7 loc) • 426 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
export declare const inputDateTypeOptions: readonly ["date", "datetime-local", "month", "time", "week"];
export type InputDateTypePropType = (typeof inputDateTypeOptions)[number];
export type PropTypeInputDate = {
type: InputDateTypePropType;
};
export declare const validateTypeInputDate: (component: Generic.Element.Component, value?: InputDateTypePropType) => void;