forked from LedgerHQ/ledger-live
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a97107b
commit 97d48df
Showing
38 changed files
with
249 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
declare module "exenv" { | ||
declare export default any; | ||
declare export var canUseDOM: any; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
declare module "memoize-one" { | ||
declare export default any; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// flow-typed signature: 198b480a6b35dbf3a74cb37d21258b00 | ||
// flow-typed version: c6154227d1/md5_v2.x.x/flow_>=v0.104.x | ||
|
||
// @flow | ||
|
||
declare module "md5" { | ||
declare module.exports: ( | ||
message: string | Buffer, | ||
options?: { | ||
asString?: boolean, | ||
asBytes?: boolean, | ||
encoding?: string, | ||
... | ||
} | ||
) => string; | ||
} |
38 changes: 38 additions & 0 deletions
38
apps/ledger-live-desktop/flow-typed/npm/prop-types_v15.x.x.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// flow-typed signature: c93a723cbeb4d2f95d6a472157f6052f | ||
// flow-typed version: 61b795e5b6/prop-types_v15.x.x/flow_>=v0.104.x | ||
|
||
type $npm$propTypes$ReactPropsCheckType = ( | ||
props: any, | ||
propName: string, | ||
componentName: string, | ||
href?: string | ||
) => ?Error; | ||
|
||
// Copied from: https://github.com/facebook/flow/blob/0938da8d7293d0077fbe95c3a3e0eebadb57b012/lib/react.js#L433-L449 | ||
declare module 'prop-types' { | ||
declare var array: React$PropType$Primitive<Array<any>>; | ||
declare var bool: React$PropType$Primitive<boolean>; | ||
declare var func: React$PropType$Primitive<(...a: Array<any>) => mixed>; | ||
declare var number: React$PropType$Primitive<number>; | ||
declare var object: React$PropType$Primitive<{ +[string]: mixed, ... }>; | ||
declare var string: React$PropType$Primitive<string>; | ||
declare var symbol: React$PropType$Primitive<Symbol>; | ||
declare var any: React$PropType$Primitive<any>; | ||
declare var arrayOf: React$PropType$ArrayOf; | ||
declare var element: React$PropType$Primitive<any>; | ||
declare var elementType: React$PropType$Primitive<any>; | ||
declare var instanceOf: React$PropType$InstanceOf; | ||
declare var node: React$PropType$Primitive<any>; | ||
declare var objectOf: React$PropType$ObjectOf; | ||
declare var oneOf: React$PropType$OneOf; | ||
declare var oneOfType: React$PropType$OneOfType; | ||
declare var shape: React$PropType$Shape; | ||
|
||
declare function checkPropTypes<V>( | ||
propTypes: { [key: $Keys<V>]: $npm$propTypes$ReactPropsCheckType, ... }, | ||
values: V, | ||
location: string, | ||
componentName: string, | ||
getStack: ?() => ?string | ||
): void; | ||
} |
3 changes: 3 additions & 0 deletions
3
apps/ledger-live-desktop/flow-typed/performance-now_v0.2.x.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
declare module "performance-now" { | ||
declare export default any; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
declare module "raf" { | ||
declare export default any; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,9 +96,9 @@ const buildTasks = args => [ | |
await exec("npm", ["run", ...commands], { | ||
env: args.publish | ||
? { | ||
SENTRY_URL: | ||
"https://[email protected]/274561", | ||
} | ||
SENTRY_URL: | ||
"https://[email protected]/274561", | ||
} | ||
: {}, | ||
}); | ||
}, | ||
|
@@ -220,7 +220,7 @@ yargs | |
.command( | ||
"check", | ||
"Run health checks", | ||
() => { }, | ||
() => {}, | ||
args => runTasks(healthChecksTasks, args), | ||
) | ||
.command( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.