mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-05-25 22:54:07 +03:00
10 lines
363 B
TypeScript
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>;
|