Update env

This commit is contained in:
Matt Kane
2026-04-01 12:39:52 +01:00
parent 086647bff4
commit 9f14710d88

View File

@@ -3,7 +3,7 @@
/// <reference types="emdash/locals" />
import type { PortableTextBlock } from "emdash";
import type { ContentBylineCredit, PortableTextBlock } from "emdash";
export interface Page {
id: string;
@@ -14,6 +14,7 @@ export interface Page {
createdAt: Date;
updatedAt: Date;
publishedAt: Date | null;
bylines?: ContentBylineCredit[];
}
export interface Post {
@@ -27,6 +28,7 @@ export interface Post {
createdAt: Date;
updatedAt: Date;
publishedAt: Date | null;
bylines?: ContentBylineCredit[];
}
declare module "emdash" {