mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-01-27 14:01:15 +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;
|