UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

15 lines (13 loc) 252 B
/** * @module estimateStatus * @description A list of estimateStatus */ export const estimateStatus = [ 'draft', 'sent', 'invoiced', 'accepted', 'declined', 'expired', ] as const; export type EstimateStatus = (typeof estimateStatus)[number];