export backend types

This commit is contained in:
jejolare 2025-02-28 11:09:56 +07:00
parent ffd90a503e
commit 81aaf4c60d
5 changed files with 6 additions and 2 deletions

View file

@ -1,2 +1,3 @@
import ServerWallet from "./server";
export { ServerWallet };
export * from "./types";

View file

@ -1,3 +1,4 @@
import ServerWallet from "./server";
export { ServerWallet };
export * from "./types";
//# sourceMappingURL=index.js.map

View file

@ -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"}

View file

@ -1,2 +1,4 @@
import ServerWallet from "./server";
export {ServerWallet};
export * from "./types";

2
web/dist/types.d.ts vendored
View file

@ -21,7 +21,7 @@ export interface Transaction {
comment: string;
fee: string;
isInitiator: boolean;
subtransfers: Transfer[];
transfers: Transfer[];
}
export interface Wallet {
address: string;