diff --git a/src/types/index.d.ts b/src/types/index.d.ts index 96110dc..68416a0 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -50,7 +50,10 @@ type Block = { length: number; type: BlockType; subtype: BlockSubType; - ial?: { [key: string]: string }; + /** string of { [key: string]: string } + * For instance: "{: custom-type=\"query-code\" id=\"20230613234017-zkw3pr0\" updated=\"20230613234509\"}" + */ + ial?: string; sort: number; created: string; updated: string; @@ -63,4 +66,4 @@ type doOperation = { parentID: BlockId | DocumentId; previousID: BlockId; retData: null; -} \ No newline at end of file +}