MCPcopy Index your code
hub / github.com/splitbee/react-notion / PageValueType

Interface PageValueType

src/types.ts:86–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84export type DecorationType = BaseDecorationType | AdditionalDecorationType;
85
86export interface PageValueType extends BaseValueType {
87 type: "page";
88 properties?: {
89 title: DecorationType[];
90 };
91 format: {
92 page_full_width?: boolean;
93 page_small_text?: boolean;
94 page_cover_position?: number;
95 block_locked?: boolean;
96 block_locked_by?: string;
97 page_cover?: string;
98 page_icon?: string;
99 };
100 permissions: { role: string; type: string }[];
101 file_ids?: string[];
102}
103
104export interface BaseTextValueType extends BaseValueType {
105 properties?: {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected