a tool for shared writing and social publishing
at cb9348fbd692bcd737672dfb8ab96b5af831e5d1 9 lines 209 B view raw
1import { Fact, useEntity, useReplicache } from "../replicache"; 2 3export const isTextBlock: { 4 [k in Fact<"block/type">["data"]["value"]]?: boolean; 5} = { 6 text: true, 7 heading: true, 8 blockquote: true, 9};