/** * Constants */ export declare enum Constants { DATEFORMAT = "YYYY-MM-DD", DATETIMEFORMAT = "YYYY-MM-DD HH:mm:ss", DATETIME_TZ_FORMAT = "YYYY-MM-DD HH:mm:ss", CONTACT = "CONTACT", BRANCH = "BRANCH", PAYMENT_CONFIG = "PAYMENT_CONFIG", TAX_DETAILS = "TAX_DETAILS", SHIPPING_ADDRESS = "SHIPPING_ADDRESS", BILLING_ADDRESS = "BILLING_ADDRESS", MAIN_ADDRESS = "MAIN_ADDRESS", CREDIT_TERMS = "CREDIT_TERMS", CREDIT_LIMITS = "CREDIT_LIMITS", LIST_CATEGORY_GUID = "LIST_CATEGORY_GUID", REMARKS = "REMARKS", CURRENCY = "CURRENCY", GENDER = "GENDER", GLCODE_INFO = "GLCODE_INFO", ID_NO = "ID_NO", TAX_REG_NO = "TAX_REG_NO" } export declare const STATUS: string[]; export declare const ENTITY_TYPE: string[]; export declare const TYPE: string[]; /** * For string values */ interface Option { value: string; viewValue: string; } export declare class ARAPTypeOptions { static values: Option[]; } export declare class EntityTypeOptions { static values: Option[]; } export declare class TypeOptions { static values: Option[]; } export declare class StatusOptions { static values: Option[]; } export declare class GenderOptions { static values: Option[]; } export declare class MaritalStatusOptions { static values: Option[]; } export declare class SettlementTypeOptions { static values: Option[]; } /** * For int values */ interface IntOption { value: number; viewValue: string; } export declare class MonthOptions { static values: IntOption[]; } export declare class IDTypeOptions { static values: Option[]; } export {};