iceshrimp-legacy/packages/calckey-js/markdown/calckey-js.entities.page.md
2023-06-23 21:13:03 -07:00

1,003 B

Home > calckey-js > entities > Page

entities.Page type

Signature:

export declare type Page = {
	id: ID;
	createdAt: DateString;
	updatedAt: DateString;
	userId: User["id"];
	user: User;
	content: Record<string, any>[];
	variables: Record<string, any>[];
	title: string;
	name: string;
	summary: string | null;
	hideTitleWhenPinned: boolean;
	alignCenter: boolean;
	font: string;
	script: string;
	eyeCatchingImageId: DriveFile["id"] | null;
	eyeCatchingImage: DriveFile | null;
	attachedFiles: any;
	likedCount: number;
	isLiked?: boolean;
};

References: ID, DateString, User, DriveFile