This commit is contained in:
58
node_modules/ol/dom.d.ts
generated
vendored
Normal file
58
node_modules/ol/dom.d.ts
generated
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* @module ol/dom
|
||||
*/
|
||||
/**
|
||||
* Create an html canvas element and returns its 2d context.
|
||||
* @param {number} [opt_width] Canvas width.
|
||||
* @param {number} [opt_height] Canvas height.
|
||||
* @param {Array<HTMLCanvasElement>} [opt_canvasPool] Canvas pool to take existing canvas from.
|
||||
* @param {CanvasRenderingContext2DSettings} [opt_Context2DSettings] CanvasRenderingContext2DSettings
|
||||
* @return {CanvasRenderingContext2D} The context.
|
||||
*/
|
||||
export function createCanvasContext2D(opt_width?: number | undefined, opt_height?: number | undefined, opt_canvasPool?: HTMLCanvasElement[] | undefined, opt_Context2DSettings?: CanvasRenderingContext2DSettings | undefined): CanvasRenderingContext2D;
|
||||
/**
|
||||
* Releases canvas memory to avoid exceeding memory limits in Safari.
|
||||
* See https://pqina.nl/blog/total-canvas-memory-use-exceeds-the-maximum-limit/
|
||||
* @param {CanvasRenderingContext2D} context Context.
|
||||
*/
|
||||
export function releaseCanvas(context: CanvasRenderingContext2D): void;
|
||||
/**
|
||||
* Get the current computed width for the given element including margin,
|
||||
* padding and border.
|
||||
* Equivalent to jQuery's `$(el).outerWidth(true)`.
|
||||
* @param {!HTMLElement} element Element.
|
||||
* @return {number} The width.
|
||||
*/
|
||||
export function outerWidth(element: HTMLElement): number;
|
||||
/**
|
||||
* Get the current computed height for the given element including margin,
|
||||
* padding and border.
|
||||
* Equivalent to jQuery's `$(el).outerHeight(true)`.
|
||||
* @param {!HTMLElement} element Element.
|
||||
* @return {number} The height.
|
||||
*/
|
||||
export function outerHeight(element: HTMLElement): number;
|
||||
/**
|
||||
* @param {Node} newNode Node to replace old node
|
||||
* @param {Node} oldNode The node to be replaced
|
||||
*/
|
||||
export function replaceNode(newNode: Node, oldNode: Node): void;
|
||||
/**
|
||||
* @param {Node} node The node to remove.
|
||||
* @return {Node|null} The node that was removed or null.
|
||||
*/
|
||||
export function removeNode(node: Node): Node | null;
|
||||
/**
|
||||
* @param {Node} node The node to remove the children from.
|
||||
*/
|
||||
export function removeChildren(node: Node): void;
|
||||
/**
|
||||
* Transform the children of a parent node so they match the
|
||||
* provided list of children. This function aims to efficiently
|
||||
* remove, add, and reorder child nodes while maintaining a simple
|
||||
* implementation (it is not guaranteed to minimize DOM operations).
|
||||
* @param {Node} node The parent node whose children need reworking.
|
||||
* @param {Array<Node>} children The desired children.
|
||||
*/
|
||||
export function replaceChildren(node: Node, children: Array<Node>): void;
|
||||
//# sourceMappingURL=dom.d.ts.map
|
||||
Reference in New Issue
Block a user