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.
12 lines (11 loc) • 543 B
TypeScript
/// <reference path="../globals.d.ts" />
import DOMNodeReference from "./DOMNodeReference.d.ts";
export default class Radio extends DOMNodeReference {
[key: symbol]: (...arg: any[]) => any;
radioType: RadioType | undefined;
radioParent: DOMNodeReference | undefined;
constructor(parent: DOMNodeReference, target: Element | string, root: Element | undefined, timeoutMs: number, radioType: RadioType);
protected initEventManager(): void;
protected initValueManager(): void;
protected initVisibilityManager(): void;
}