mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-07-12 05:24:23 +02: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;
|