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