@mastercard/connect-components-web-sdk
Version:
The web SDK for the Connect Components project
21 lines (19 loc) • 377 B
text/typescript
export type ElementImports = {
appConfig: import('../../config/types').AppConfig,
crypto: {
randomUUID(): string,
},
HTMLElement: any,
document: any,
MutationObserver: any,
logger: {
log: Function,
warn: Function,
error: Function,
}
}
export type ElementExports = {
connectedCallback(): void,
onSubmit(event: any): void,
submit(): void
}