diff --git a/dist/flow-typed/Lbry.js b/dist/flow-typed/Lbry.js index 41ae93c..93ce160 100644 --- a/dist/flow-typed/Lbry.js +++ b/dist/flow-typed/Lbry.js @@ -125,6 +125,11 @@ declare type AccountListResponse = Array<{ modified_on: string, }>; +declare type SyncApplyResponse = { + hash: string, + data: string, +}; + // // Types used in the generic Lbry object that is exported // @@ -170,6 +175,11 @@ declare type LbryTypes = { address_is_mine: (params: {}) => Promise, address_unused: (params: {}) => Promise, // New address transaction_list: (params: {}) => Promise, + + // Sync + sync_hash: (params: {}) => Promise, + sync_apply: (params: {}) => Promise, + // The app shouldn't need to do this utxo_release: () => Promise, }; diff --git a/flow-typed/Lbry.js b/flow-typed/Lbry.js index 41ae93c..93ce160 100644 --- a/flow-typed/Lbry.js +++ b/flow-typed/Lbry.js @@ -125,6 +125,11 @@ declare type AccountListResponse = Array<{ modified_on: string, }>; +declare type SyncApplyResponse = { + hash: string, + data: string, +}; + // // Types used in the generic Lbry object that is exported // @@ -170,6 +175,11 @@ declare type LbryTypes = { address_is_mine: (params: {}) => Promise, address_unused: (params: {}) => Promise, // New address transaction_list: (params: {}) => Promise, + + // Sync + sync_hash: (params: {}) => Promise, + sync_apply: (params: {}) => Promise, + // The app shouldn't need to do this utxo_release: () => Promise, };