EncSpontPayment

This commit is contained in:
Daniel Lugo 2020-03-27 18:53:49 -04:00
parent 3ec4b6bd69
commit a4ebba93c5

View file

@ -0,0 +1,15 @@
/**
* @format
* Contains types that are used throughout the application. Written in
* typescript for easier implementation.
*
* Nominal types are archieved through the enum method as outlined here:
* https://basarat.gitbook.io/typescript/main-1/nominaltyping
*/
enum _EncSpontPayment {
_ = ''
}
/**
* Spontaneous payment as found inside a chat message body.
*/
export type EncSpontPayment = _EncSpontPayment & string