5 lines
219 B
TypeScript
5 lines
219 B
TypeScript
|
|
declare module 'domino' {
|
||
|
|
function createDOMImplementation(): DOMImplementation;
|
||
|
|
function createDocument(html?: string, force?: boolean): Document;
|
||
|
|
function createWindow(html?: string, address?: string): Window;
|
||
|
|
}
|