File tree 5 files changed +0
-26
lines changed
5 files changed +0
-26
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,6 @@ export default abstract class BonusProgramAdapter {
32
32
*/
33
33
abstract readonly decimals : number ;
34
34
abstract readonly description : string ;
35
- /**
36
- * The site will calculation record transactions
37
- */
38
- abstract readonly localProcessing : boolean ;
39
35
constructor ( config ?: ConfigBonusProgramAdapter ) ;
40
36
/**
41
37
* method for set ORMid
Original file line number Diff line number Diff line change @@ -46,11 +46,6 @@ export default abstract class BonusProgramAdapter {
46
46
public abstract readonly decimals : number ;
47
47
public abstract readonly description : string ;
48
48
49
- /**
50
- * The site will calculation record transactions
51
- */
52
- public abstract readonly localProcessing : boolean ;
53
-
54
49
public constructor ( config ?: ConfigBonusProgramAdapter ) {
55
50
this . config = config ;
56
51
}
Original file line number Diff line number Diff line change @@ -24,10 +24,6 @@ declare let attributes: {
24
24
/** user option */
25
25
enable : boolean ;
26
26
automaticUserRegistration : boolean ;
27
- /**
28
- * The site will record transactions
29
- */
30
- localProcessing : boolean ;
31
27
customData : {
32
28
[ key : string ] : string | boolean | number ;
33
29
} | string ;
Original file line number Diff line number Diff line change @@ -43,12 +43,6 @@ let attributes = {
43
43
automaticUserRegistration : {
44
44
type : "boolean" ,
45
45
} ,
46
- /**
47
- * The site will record transactions
48
- */
49
- localProcessing : {
50
- type : "boolean" ,
51
- } ,
52
46
customData : "json" ,
53
47
} ;
54
48
let Model = {
Original file line number Diff line number Diff line change @@ -61,13 +61,6 @@ let attributes = {
61
61
type : "boolean" ,
62
62
} as unknown as boolean ,
63
63
64
- /**
65
- * The site will record transactions
66
- */
67
- localProcessing : {
68
- type : "boolean" ,
69
- } as unknown as boolean ,
70
-
71
64
customData : "json" as unknown as {
72
65
[ key : string ] : string | boolean | number ;
73
66
} | string ,
You can’t perform that action at this time.
0 commit comments