You've already forked docusaurus-og
mirror of
https://github.com/wavetermdev/docusaurus-og.git
synced 2026-04-22 15:27:22 -07:00
9167ba6b07
Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com>
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
import { HTMLElement } from 'node-html-parser';
|
|
export declare class Document {
|
|
private path;
|
|
root: HTMLElement;
|
|
loaded: boolean;
|
|
constructor(path: string);
|
|
load: () => Promise<void>;
|
|
write: () => Promise<void>;
|
|
setImage: (url: string) => Promise<void>;
|
|
get head(): HTMLElement;
|
|
private getMeta;
|
|
private updateMeta;
|
|
}
|