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