remons-render-markdown 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -40,9 +40,17 @@ interface MermaidRendererProps {
40
40
  * 是否显示新手引导
41
41
  */
42
42
  showDriverGuide?: boolean;
43
+ /**
44
+ * 是否为打印模式
45
+ */
46
+ isPrintPreview?: boolean;
43
47
  }
44
48
  interface IProps {
45
49
  showDriverGuide?: boolean;
50
+ /**
51
+ * 是否为打印模式
52
+ */
53
+ isPrintPreview?: boolean;
46
54
  }
47
55
  declare const MermaidRenderer: React.ForwardRefExoticComponent<MermaidRendererProps & React.RefAttributes<null>>;
48
56
  declare function renderMermaidWithControls(props: IProps): Promise<void>;
@@ -37,6 +37,10 @@ interface Props {
37
37
  * 是否显示新手引导
38
38
  */
39
39
  showDriverGuide?: boolean;
40
+ /**
41
+ * 是否为打印模式
42
+ */
43
+ isPrintPreview?: boolean;
40
44
  }
41
45
  export default function RenderMarkdown(props: Props): React.JSX.Element;
42
46
  export {};