2024-02-26 03:08:59 +01:00

6 lines
114 B
TypeScript

export type RichTextContext = {
depth: number;
};
export const defaultContext: RichTextContext = { depth: 1 };