* Base properties that all blocks share.
| 14 | * Base properties that all blocks share. |
| 15 | */ |
| 16 | interface 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. |
nothing calls this directly
no outgoing calls
no test coverage detected