8 lines
371 B
TypeScript
8 lines
371 B
TypeScript
/*!
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License.
|
|
*/
|
|
export declare function querySelectorAll(node: ParentNode, selector: string): Element[];
|
|
export declare function querySelector(node: ParentNode, selector: string): Element | null;
|
|
export declare function getElementById(doc: Document, id: string): HTMLElement | null;
|