mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-05 13:52:25 +02:00
5 lines
269 B
TypeScript
5 lines
269 B
TypeScript
import type { Document } from '../doc/Document.js';
|
|
import type { Node } from '../nodes/Node.js';
|
|
import type { ToStringOptions } from '../options.js';
|
|
export declare function stringifyDocument(doc: Readonly<Document<Node, boolean>>, options: ToStringOptions): string;
|