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) • 513 B
TypeScript
/// <reference path="../globals.d.ts" />
import type PowerPagesElement from "./PowerPagesElement.d.ts";
export default class PowerPagesElementArray extends Array<PowerPagesElement> {
/**
* Hides all the containers of the PowerPagesElement instances in the array.
*/
hideAll(this: PowerPagesElementArray): PowerPagesElementArray;
/**
* Shows all the containers of the PowerPagesElement instances in the array.
*/
showAll(this: PowerPagesElementArray): PowerPagesElementArray;
}