react-fblibrary
Version:
FBLibrary é uma biblioteca autoral que reúne componentes e bases fundamentais para desenvolvimento eficiente. Nosso objetivo é criar um ecossistema de componentes, desde elementos simples, como inputs e botões, até layouts completos, que podem ser reutili
9 lines (8 loc) • 324 B
TypeScript
/**
* Validates the given value based on the specified type.
*
* @param {any} value - The value to be validated.
* @param {string} type - The type of validation to be performed.
* @return {any} - The validated value or false if validation fails.
*/
export declare const validFields: (value: any, type: string) => any;