@udus/notion-renderer
Version:

9 lines • 488 B
TypeScript
import type { PropertyItemProps } from "./properties.js";
import type { DatePropertyItemObjectResponse } from "@notionhq/client/build/src/api-endpoints.js";
import type { ComponentType } from "react";
export type DatePropertyItemObject = DatePropertyItemObjectResponse;
export type DatePropertyItemProps = PropertyItemProps<DatePropertyItemObject> & {
format?: string;
};
export type DatePropertyItemComponent = ComponentType<DatePropertyItemProps>;
//# sourceMappingURL=date.d.ts.map