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

Interface BaseValueType

src/types.ts:16–31  ·  view source on GitHub ↗

* Base properties that all blocks share.

Source from the content-addressed store, hash-verified

14 * Base properties that all blocks share.
15 */
16interface BaseValueType {
17 id: string;
18 version: number;
19 created_time: number;
20 last_edited_time: number;
21 parent_id: string;
22 parent_table: string;
23 alive: boolean;
24 created_by_table: string;
25 created_by_id: string;
26 last_edited_by_table: string;
27 last_edited_by_id: string;
28 space_id?: string;
29 properties?: any;
30 content?: string[];
31}
32
33/**
34 * Colors and backgrounds a given block can have in Notion.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected