TransactionStatus

type TransactionStatus = 
  | {
  Err: TransactionError;
}
  | {
  Ok: null;
};

Deprecated

On this page