File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
1
import { ITransaction } from './ITransaction' ;
2
2
3
+ export interface ITransaction {
4
+ id : number ;
5
+ name : string ;
6
+ description : string ;
7
+ amount : number ;
8
+ date : Date ;
9
+ type : string ;
10
+ category : string ;
11
+ account : string ;
12
+ status : string ;
13
+ createdAt : Date ;
14
+ updatedAt : Date ;
15
+ }
16
+
3
17
export class Transaction implements ITransaction {
4
18
id : number ;
5
19
name : string ;
Original file line number Diff line number Diff line change 1
- import { NFC , GetStatus as GetStatusType } from 'libportal-react-native' ;
2
- import { Bitcoin as BitcoinType } from 'libportal-react-native/bitcoin' ; import { multiply } from '../utils/math' ; export class Hww {
1
+ import { NFC } from 'libportal-react-native' ;
2
+ import { GetStatus as GetStatusType } from 'libportal-react-native/dist/types' ; import { Bitcoin as BitcoinType } from 'libportal-react-native;'
3
+ export class Hww {
3
4
static multiply ( a : number , b : number ) : Promise < number > {
4
5
return multiply ( a , b ) ;
5
6
}
You can’t perform that action at this time.
0 commit comments