@basis-theory/basis-theory-elements-interfaces
Advanced tools
Comparing version 2.2.0 to 3.0.0
@@ -13,6 +13,5 @@ import type { ElementEventListener, EventType, Subscription } from './events'; | ||
declare type TextElement = BaseElement<UpdateTextElementOptions>; | ||
interface BasisTheoryElements { | ||
interface BasisTheoryElements extends Tokenize { | ||
atomicBanks: AtomicBanks; | ||
atomicCards: AtomicCards; | ||
tokenize: Tokenize; | ||
tokens: Tokens; | ||
@@ -19,0 +18,0 @@ createElement(type: 'card', options?: CreateCardElementOptions): CardElement; |
{ | ||
"name": "@basis-theory/basis-theory-elements-interfaces", | ||
"version": "2.2.0", | ||
"version": "3.0.0", | ||
"repository": "https://github.com/Basis-Theory/basis-theory-elements-interfaces", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -17,7 +17,6 @@ import type { BasisTheoryElements } from '../elements'; | ||
} | ||
interface BasisTheory { | ||
interface BasisTheory extends Tokenize { | ||
atomicBanks: AtomicBanks; | ||
atomicCards: AtomicCards; | ||
tokens: Tokens; | ||
tokenize: Tokenize; | ||
applications: Applications; | ||
@@ -24,0 +23,0 @@ tenants: Tenants; |
54517
1054