mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-24 00:29:49 +00:00
11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
// @ts-nocheck
|
|
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;
|