MCPcopy
hub / github.com/autoNumeric/autoNumeric / AutoNumericEventFormattedData

Interface AutoNumericEventFormattedData

index.d.ts:1716–1729  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected