tranzak-node
Version:
TRANZAK API client for Nodejs
16 lines (12 loc) • 391 B
TypeScript
/**
* Copyright 2023 HolyCorn Software
* The tranzak-node library
* This module (types), contains type definitions for sections of the api, that have to do with payment in general
*/
import './collection/types'
import './transfer/types'
export declare global {
export namespace tranzak_node.payment {
type STATUS = "PENDING" | "SUCCESSFUL" | "CANCELLED" | "FAILED"
}
}