| 111 | } |
| 112 | |
| 113 | interface BookmarkValueType extends BaseValueType { |
| 114 | type: "bookmark"; |
| 115 | properties: { |
| 116 | link: DecorationType[]; |
| 117 | title?: DecorationType[]; |
| 118 | description?: DecorationType[]; |
| 119 | }; |
| 120 | format?: { |
| 121 | block_color?: string; |
| 122 | bookmark_icon: string; |
| 123 | bookmark_cover: string; |
| 124 | }; |
| 125 | } |
| 126 | |
| 127 | interface TextValueType extends BaseTextValueType { |
| 128 | type: "text"; |
nothing calls this directly
no outgoing calls
no test coverage detected