@monei-js/components
Version:
MONEI UI Components enable you to collect sensitive payment information using customizable UI components.
9 lines (8 loc) • 358 B
TypeScript
import { CardInputProps } from './types';
import { MoneiComponent } from '../../types/component';
export * from './types';
export declare const createToken: (component?: MoneiComponent<CardInputProps> | undefined, options?: any) => Promise<{
token?: string;
error?: string;
}>;
export declare const CardInput: MoneiComponent<CardInputProps>;