8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
import { TextMap } from "../types";
|
|
interface QRCodeDisplayProps {
|
|
text: TextMap;
|
|
uri: string;
|
|
}
|
|
declare function QRCodeDisplay(props: QRCodeDisplayProps): JSX.Element;
|
|
export default QRCodeDisplay;
|
|
//# sourceMappingURL=QRCodeDisplay.d.ts.map
|