| 1714 | }); |
| 1715 | |
| 1716 | export interface AutoNumericEventFormattedData { |
| 1717 | /** The AutoNumeric instance emitting this event */ |
| 1718 | aNElement: AutoNumeric; |
| 1719 | /** Is the element value still pristine? In other words, has its value changed since its initialization? */ |
| 1720 | isPristine: boolean; |
| 1721 | /** The new raw value. */ |
| 1722 | newRawValue: number | null; |
| 1723 | /** The new formatted value. */ |
| 1724 | newValue: string; |
| 1725 | /** The previous raw value. */ |
| 1726 | oldRawValue: number | null; |
| 1727 | /** The previous formatted value. */ |
| 1728 | oldValue: string; |
| 1729 | } |
| 1730 | |
| 1731 | export interface AutoNumericEventRawValueModifiedData { |
| 1732 | /** The AutoNumeric instance emitting this event */ |
nothing calls this directly
no outgoing calls
no test coverage detected