diff --git a/src/types/onyx/Policy.ts b/src/types/onyx/Policy.ts index c01b09274555..0daf0b1275b8 100644 --- a/src/types/onyx/Policy.ts +++ b/src/types/onyx/Policy.ts @@ -26,6 +26,11 @@ type CustomUnit = { errors?: OnyxCommon.Errors; }; +type DisabledFields = { + defaultBillable?: boolean; + reimbursable?: boolean; +} + type AutoReportingOffset = number | ValueOf; type Policy = { @@ -129,7 +134,7 @@ type Policy = { description?: string; /** List of field names that are disabled */ - disabledFields?: Record; + disabledFields?: DisabledFields; /** Whether new transactions need to be tagged */ requiresTag?: boolean;