mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
// @ts-nocheck
|
|
import * as Yup from 'yup';
|
|
|
|
export const getBillingFormValidationSchema = () =>
|
|
Yup.object().shape({
|
|
plan_slug: Yup.string().required(),
|
|
period: Yup.string().required(),
|
|
license_code: Yup.string().trim(),
|
|
});
|