mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
// @ts-nocheck
|
|
import * as Yup from 'yup';
|
|
|
|
const Schema = Yup.object().shape({
|
|
termsConditions: Yup.string().optional(),
|
|
customerNotes: Yup.string().optional(),
|
|
});
|
|
|
|
export const PreferencesReceiptsFormSchema = Schema;
|