@r2u/javascript-ar-sdk 6.9.3 → 6.9.4

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.
@@ -6,4 +6,5 @@ export declare const AiFillLike: React.FC<Props>;
6
6
  export declare const AiFillDislike: React.FC<Props>;
7
7
  export declare const LightOff: React.FC<Props>;
8
8
  export declare const LightOn: React.FC<Props>;
9
+ export declare const AmericanasLogo: React.FC<Props>;
9
10
  export {};
@@ -4,6 +4,7 @@ export interface InstructionsProps extends ARProps {
4
4
  activateAR: (props: ARProps) => void;
5
5
  hasWaterMark: boolean;
6
6
  onOpen: () => void;
7
+ customerId?: string;
7
8
  }
8
9
  declare const InstructionsModal: React.FC<InstructionsProps>;
9
10
  export default InstructionsModal;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { InstructionsProps } from '../Instructions';
3
+ declare const InstructionsAmericanas: React.FC<InstructionsProps>;
4
+ export default InstructionsAmericanas;
@@ -0,0 +1 @@
1
+ export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;