powerpagestoolkit
Version:
Reference, manipulate, and engage with Power Pages sites through the nodes in the DOM; use a variety of custom methods that allow customizing your power pages site quicker and easier.
13 lines (12 loc) • 352 B
TypeScript
/// <reference path="../globals.d.ts" />
/**
* For use in setting up event management in the instances of PowerPagesElement
* @see {@link PowerPagesElement}
*/
export declare const EventTypes: {
readonly CHECKBOX: "click";
readonly RADIO: "click";
readonly SELECT: "change";
readonly TEXT: "keyup";
readonly DEFAULT: "input";
};