Files
OverlayScrollbars/local/browser-testing/dist/support/dom/create.d.ts
T
2022-07-30 19:45:11 +02:00

10 lines
363 B
TypeScript

/**
* Creates a div DOM node.
*/
export declare const createDiv: (classNames?: string) => HTMLDivElement;
/**
* Creates DOM nodes modeled after the passed html string and returns the root dom nodes as a array.
* @param html The html string after which the DOM nodes shall be created.
*/
export declare const createDOM: (html: string) => ReadonlyArray<Node>;