mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 14:50:32 +00:00
6 lines
160 B
TypeScript
6 lines
160 B
TypeScript
import * as Yup from 'yup';
|
|
|
|
export const InvoiceCustomizeSchema = Yup.object().shape({
|
|
templateName: Yup.string().required('Template Name is required'),
|
|
});
|