7 lines
108 B
TypeScript
7 lines
108 B
TypeScript
|
export type Account = {
|
||
|
uuid: string
|
||
|
username?: string
|
||
|
publicKey: string
|
||
|
currency: string
|
||
|
}
|