a tool for shared writing and social publishing
at 37cdeb97c43f3498cb2d29b0f1d9aefc287d668e 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};