updates
This commit is contained in:
parent
f5289f9811
commit
22879b2880
7 changed files with 69 additions and 44 deletions
flow-typed
20
flow-typed/lbryURI.js
vendored
Normal file
20
flow-typed/lbryURI.js
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// @flow
|
||||
declare type LbryUrlObj = {
|
||||
// Path and channel will always exist when calling parseURI
|
||||
// But they may not exist when code calls buildURI
|
||||
isChannel?: boolean,
|
||||
path?: string,
|
||||
streamName?: string,
|
||||
streamClaimId?: string,
|
||||
channelName?: string,
|
||||
channelClaimId?: string,
|
||||
primaryClaimSequence?: number,
|
||||
secondaryClaimSequence?: number,
|
||||
primaryBidPosition?: number,
|
||||
secondaryBidPosition?: number,
|
||||
|
||||
// Below are considered deprecated and should not be used due to unreliableness with claim.canonical_url
|
||||
claimName?: string,
|
||||
claimId?: string,
|
||||
contentName?: string,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue