This repository has been archived by the owner on Mar 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
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
c23c521
commit 408b65a
Showing
10 changed files
with
1,035 additions
and
85 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
flow-custom-typedefs/*.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
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,8 @@ | ||
{ | ||
"concurrentFiles": 1, | ||
"globExcludePatterns": ["node_modules/**", "dist/*.js"], | ||
"flowCommandPath": "./node_modules/.bin/flow", | ||
"globIncludePatterns": ["app/**/*.js", "config/**/*.js", "services/**/*.js", "utils/**/*.js"], | ||
"threshold": 70, | ||
"reportTypes": ["html"] | ||
} |
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,24 @@ | ||
declare module 'electron-store' { | ||
declare class ElectronStore { | ||
constructor({ | ||
defaults?: Object, | ||
name?: string, | ||
cwd?: string, | ||
encryptionKey?: string | Buffer, | ||
fileExtension?: string, | ||
}): ElectronStore; | ||
|
||
set(key: string, value: string): void; | ||
set(payload: Object): void; | ||
get(key: string): string; | ||
has(key: string): boolean; | ||
delete(key: string): void; | ||
clear(): void; | ||
size: number; | ||
store: Object; | ||
path: string; | ||
openInEditor(): void; | ||
} | ||
|
||
declare export default typeof ElectronStore; | ||
} |
Oops, something went wrong.