export backend types
This commit is contained in:
parent
ffd90a503e
commit
81aaf4c60d
5 changed files with 6 additions and 2 deletions
1
server/dist/index.d.ts
vendored
1
server/dist/index.d.ts
vendored
|
|
@ -1,2 +1,3 @@
|
|||
import ServerWallet from "./server";
|
||||
export { ServerWallet };
|
||||
export * from "./types";
|
||||
|
|
|
|||
1
server/dist/index.js
vendored
1
server/dist/index.js
vendored
|
|
@ -1,3 +1,4 @@
|
|||
import ServerWallet from "./server";
|
||||
export { ServerWallet };
|
||||
export * from "./types";
|
||||
//# sourceMappingURL=index.js.map
|
||||
2
server/dist/index.js.map
vendored
2
server/dist/index.js.map
vendored
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,UAAU,CAAC;AACpC,OAAO,EAAC,YAAY,EAAC,CAAC"}
|
||||
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,UAAU,CAAC;AACpC,OAAO,EAAC,YAAY,EAAC,CAAC;AAEtB,cAAc,SAAS,CAAC"}
|
||||
|
|
@ -1,2 +1,4 @@
|
|||
import ServerWallet from "./server";
|
||||
export {ServerWallet};
|
||||
|
||||
export * from "./types";
|
||||
2
web/dist/types.d.ts
vendored
2
web/dist/types.d.ts
vendored
|
|
@ -21,7 +21,7 @@ export interface Transaction {
|
|||
comment: string;
|
||||
fee: string;
|
||||
isInitiator: boolean;
|
||||
subtransfers: Transfer[];
|
||||
transfers: Transfer[];
|
||||
}
|
||||
export interface Wallet {
|
||||
address: string;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue