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