@useloops/design-system
Version:
The official React based Loops design system
12 lines (10 loc) • 396 B
TypeScript
declare const chooseArticle: (word: string) => string;
declare const defaultInputValidation: (inputName?: string, isRequired?: boolean, maxLength?: number) => {
required?: string | undefined;
maxLength: {
value: number;
message: string;
};
};
declare const DEFAULT_MAX_INPUT_LENGTH: number;
export { DEFAULT_MAX_INPUT_LENGTH, chooseArticle, defaultInputValidation };