@adyen/adyen-web
Version:

18 lines (17 loc) • 421 B
TypeScript
import { h } from 'preact';
import RedirectElement from '../Redirect';
declare class GiropayElement extends RedirectElement {
static type: string;
formatProps(props: any): any;
/**
* Formats the component data output
*/
formatData(): {
paymentMethod: {
type: string;
};
};
get displayName(): any;
render(): h.JSX.Element;
}
export default GiropayElement;