lbry-desktop/flow-typed/location.js

19 lines
297 B
JavaScript
Raw Normal View History

2019-03-28 17:53:13 +01:00
// @flow
2019-04-24 16:02:08 +02:00
declare type UrlLocation = {
2019-03-28 17:53:13 +01:00
search: string,
hash: string,
host: string,
hostname: string,
href: string,
key: string,
origin: string,
pathname: string,
port: string,
protocol: string,
reload: () => void,
replace: string => void,
search: string,
state: {},
};