6 lines
147 B
JavaScript
6 lines
147 B
JavaScript
const vehicleLookupAlertTypes = Object.freeze({
|
|
NOT_FOUND: 'notFound',
|
|
NOT_MATCHED: 'notMatched',
|
|
});
|
|
|
|
export default vehicleLookupAlertTypes;
|