6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
|
|
import { TextBlot } from 'parchment';
|
||
|
|
declare class Text extends TextBlot {
|
||
|
|
}
|
||
|
|
declare function escapeText(text: string): string;
|
||
|
|
export { Text as default, escapeText };
|