export type StringOrNumber = string | number; export type AnyType = any; /** * Datestring in the format of YYYY-MM-DD */ export type DateString = string; /** * Value must match regular expression ^(\d+.\d\d)$ */ export type AmountString = string;