tdesign-miniprogram
Version:
TDesign Component for miniprogram
18 lines (17 loc) • 379 B
TypeScript
export interface TdChatMarkdownProps {
content: {
type: StringConstructor;
value?: string;
required?: boolean;
};
options?: {
type: ObjectConstructor;
value?: TdChatContentMDOptions;
};
}
export interface TdChatContentMDOptions {
gfm?: boolean;
pedantic?: boolean;
smartLists?: boolean;
breaks?: boolean;
}