Skip to content

Instantly share code, notes, and snippets.

View lfantone's full-sized avatar
🇦🇷

Luciano Fantone lfantone

🇦🇷
View GitHub Profile
@lfantone
lfantone / yup.flow.js
Created May 24, 2018 22:42
Yup's Flow types
declare module 'yup' {
declare type ValidateOptions = {
strict?: boolean,
abortEarly?: boolean,
stripUnknown?: boolean,
recursive?: boolean,
context?: any
};
declare type ValidationError = {