Add the shell of a StripeTransaction interface

This commit is contained in:
Eric Schultz 2021-05-04 17:00:38 -05:00 committed by Eric Schultz
parent 59b950cdf4
commit 5710376e4a

View file

@ -0,0 +1,6 @@
// License: LGPL-3.0-or-later
import type { Subtransaction} from "..";
export default interface StripeTransaction extends Subtransaction {
object: 'stripe_transaction';
}