Skip to content

Commit

Permalink
fix: fixing error while fields loading
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-sourabh committed Oct 15, 2024
1 parent b27f6c6 commit 2987480
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions chargebee-js-react/dist/components/ComponentGroup.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ export default class ChargebeeComponents extends React.Component<ChargebeeCompon
};
componentDidUpdate(prevProps: ChargebeeComponentProps): void;
componentDidMount(): void;
tokenize(additionalData: AdditionalData): any;
componentWillUnmount(): void;
tokenize(additionalData: AdditionalData): Promise<object>;
authorizeWith3ds(paymentIntent: PaymentIntent, additionalData: AdditionalData, callbacks: Callbacks): Promise<PaymentIntent>;
focus(): void;
blur(): void;
clear(): void;
render(): JSX.Element;
render(): React.JSX.Element;
}
export {};
2 changes: 1 addition & 1 deletion chargebee-js-react/dist/components/Element.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ export default class Element extends React.Component<ElementProps> {
focus(): void;
blur(): void;
clear(): void;
render(): JSX.Element;
render(): React.JSX.Element;
}
export {};

0 comments on commit 2987480

Please sign in to comment.