mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
10 lines
225 B
TypeScript
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;
|