6 lines
114 B
TypeScript
6 lines
114 B
TypeScript
export type RichTextContext = {
|
|
depth: number;
|
|
};
|
|
|
|
export const defaultContext: RichTextContext = { depth: 1 };
|