mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 22:30:31 +00:00
10 lines
273 B
JavaScript
10 lines
273 B
JavaScript
import * as Yup from 'yup';
|
|
|
|
const Schema = Yup.object().shape({
|
|
preferred_sell_account: Yup.number().nullable(),
|
|
preferred_cost_account: Yup.number().nullable(),
|
|
preferred_inventory_account: Yup.number().nullable(),
|
|
});
|
|
|
|
export const ItemPreferencesSchema = Schema;
|