8 lines
112 B
TypeScript
8 lines
112 B
TypeScript
|
import { Element } from "antihtml";
|
||
|
|
||
|
export interface Page {
|
||
|
title: string,
|
||
|
ref: string,
|
||
|
content: Element,
|
||
|
}
|