tt-pdf-generator 1.5.0 → 1.5.1

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.
@@ -0,0 +1,2 @@
1
+ import { PdfGeneratorProps } from '../types';
2
+ export declare const PdfGenerator: React.FC<PdfGeneratorProps>;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ export declare const Bullet: React.FC<{
3
+ direction?: 'rtl' | 'ltr';
4
+ } & React.ComponentProps<'div'>>;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const Html: React.FC<any>;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ export interface MapProps {
3
+ items: string;
4
+ itemKeyWord?: string;
5
+ component: any;
6
+ data: any;
7
+ images: any;
8
+ }
9
+ export declare const Map: React.FC<MapProps>;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ export interface MarkdownProps {
3
+ children?: string | React.ReactNode;
4
+ text?: string;
5
+ markdown?: string;
6
+ style?: any;
7
+ [key: string]: any;
8
+ }
9
+ export declare const Markdown: React.FC<MarkdownProps>;
@@ -0,0 +1,6 @@
1
+ import { ImageProps } from '@react-pdf/renderer';
2
+ import React from 'react';
3
+ declare const QrCode: React.FC<ImageProps & {
4
+ qrCodeText: string;
5
+ }>;
6
+ export default QrCode;