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