| 84 | export type DecorationType = BaseDecorationType | AdditionalDecorationType; |
| 85 | |
| 86 | export 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 | |
| 104 | export interface BaseTextValueType extends BaseValueType { |
| 105 | properties?: { |
nothing calls this directly
no outgoing calls
no test coverage detected