import { ExtendedPostInfo } from "types/index"; import { FunctionComponent } from "preact"; export type ComponentProps = { post: ExtendedPostInfo; postHtml: string; height: number; width: number; authorImageMap: Record; }; export type Layout = { name: string; css: string; Component: FunctionComponent; }; export const PAGE_WIDTH = 1280; export const PAGE_HEIGHT = 640;