Files
bigcapital/packages/webapp/src/containers/Preferences/Estimates/PreferencesEstimatesForm.schema.ts

10 lines
225 B
TypeScript

// @ts-nocheck
import * as Yup from 'yup';
const Schema = Yup.object().shape({
termsConditions: Yup.string().optional(),
customerNotes: Yup.string().optional(),
});
export const PreferencesEstimatesFormSchema = Schema;