/** * @dynamic need this because there are static memebers * * String that represent the transformed format, used * with DataPipes. * * Ex. * // constants outside of a component need to be assigned * // to a local property in order to work * * const dateFmt: string = DataPipeConstants.DATE_FMT; * {{ value | dataPipes:dateFmt }} */ export declare class DataPipeConstants { static readonly DATE_FMT = "dd/MMM/yyyy"; static readonly DATE_SHORTDATE = "M/d/yy"; static readonly DATE_MEDIUMDATE = "MMM d, y"; static readonly DATE_FULLDATE = "EEEE, MMMM d, y"; static readonly DATE_TIME_FMT: string; static readonly DATE_TIME_ZONE_FMT = "MM/dd/yyyy hh:mm:ss a z"; static readonly DATE_DAY_TIME = "EEE h a"; static readonly PIPE_DATE = "date"; static readonly PIPE_SHORTDATE = "shortdate"; static readonly PIPE_MEDIUMDATE = "mediumdate"; static readonly PIPE_FULLDATE = "fulldate"; static readonly PIPE_DECIMAL_TWO = "decimalTwo"; static readonly PIPE_DECIMAL_FOUR = "decimalfour"; static readonly PIPE_EPOCH = "epoch"; static readonly PIPE_NUMBER = "number"; static readonly PIPE_PERCENTAGE = "percentage"; static readonly PIPE_PERCENTAGE_DECIMAL = "percentagedecimal"; static readonly PIPE_TEMP_FAHRENHEIT = "fahrenheit"; static readonly PIPE_TEMP_CELSIUS = "celsius"; static readonly PIPE_TEMP_KELVIN = "kelvin"; static readonly PIPE_MPH = "mph"; static readonly PIPE_STRING_SLICE_FIFTY = "slicefifty"; static readonly PIPE_STRING_SLICE_SEVENTY = "sliceseventy"; static readonly PIPE_STRING_SLICE_HUNDRED = "slicehundred"; static readonly PIPE_PASSWORD = "password"; } //# sourceMappingURL=data-pipe.constants.d.ts.map