mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-01-29 06:42:36 +01:00
12 lines
190 B
TypeScript
12 lines
190 B
TypeScript
|
import Fields from "./fields";
|
||
|
import Frontmatter from "./frontmatter";
|
||
|
|
||
|
interface Node {
|
||
|
id: string;
|
||
|
fields: Fields;
|
||
|
frontmatter: Frontmatter;
|
||
|
html: string;
|
||
|
}
|
||
|
|
||
|
export default Node;
|