coveo-search-ui-extensions
Version:
Small generic components to extend the functionality of Coveo's Search UI framework.
16 lines • 446 B
JavaScript
export const USER_ACTION_EVENT_TYPE = 'User Actions';
export class UserActionEvents {
}
UserActionEvents.load = Object.freeze({
name: 'userActionLoad',
type: USER_ACTION_EVENT_TYPE,
});
UserActionEvents.submit = Object.freeze({
name: 'userActionsSubmit',
type: USER_ACTION_EVENT_TYPE,
});
UserActionEvents.open = Object.freeze({
name: 'openUserActions',
type: USER_ACTION_EVENT_TYPE,
});
//# sourceMappingURL=Events.js.map