Initial commit 🎉
fbshipit-source-id: b6fc29740c6875d2e78953b8a7123890a67930f2 Co-authored-by: Sebastian McKenzie <sebmck@fb.com> Co-authored-by: John Knox <jknox@fb.com> Co-authored-by: Emil Sjölander <emilsj@fb.com> Co-authored-by: Pritesh Nandgaonkar <prit91@fb.com>
This commit is contained in:
78
flow-typed/electron-menu.js
vendored
Normal file
78
flow-typed/electron-menu.js
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
/**
|
||||
* Copyright 2018-present Facebook.
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
* @format
|
||||
*/
|
||||
|
||||
type Electron$BrowserWindow = any;
|
||||
type Electron$NativeImage = any;
|
||||
|
||||
type Electron$MenuRoles =
|
||||
| 'undo'
|
||||
| 'redo'
|
||||
| 'cut'
|
||||
| 'copy'
|
||||
| 'paste'
|
||||
| 'pasteandmatchstyle'
|
||||
| 'selectall'
|
||||
| 'delete'
|
||||
| 'minimize'
|
||||
| 'close'
|
||||
| 'quit'
|
||||
| 'togglefullscreen' // macOS-only
|
||||
| 'about'
|
||||
| 'hide'
|
||||
| 'hideothers'
|
||||
| 'unhide'
|
||||
| 'front'
|
||||
| 'zoom'
|
||||
| 'window'
|
||||
| 'help'
|
||||
| 'services';
|
||||
|
||||
type Electron$MenuType = 'normal' | 'separator' | 'submenu' | 'checkbox' | 'radio';
|
||||
|
||||
type Electron$MenuItemOptions = {
|
||||
click?: (
|
||||
menuItem: Electron$MenuItem,
|
||||
browserWindow: Object,
|
||||
event: Object,
|
||||
) => void,
|
||||
role?: Electron$MenuRoles,
|
||||
type?: Electron$MenuType,
|
||||
label?: string,
|
||||
sublabel?: string,
|
||||
accelerator?: string,
|
||||
icon?: Object,
|
||||
enabled?: boolean,
|
||||
visible?: boolean,
|
||||
checked?: boolean,
|
||||
submenu?: Electron$MenuItem | Electron$MenuItemOptions,
|
||||
id?: string,
|
||||
position?: string,
|
||||
};
|
||||
|
||||
declare class Electron$MenuItem {
|
||||
constructor: (options: Electron$MenuItemOptions) => void,
|
||||
enabled: boolean,
|
||||
visible: boolean,
|
||||
checked: boolean,
|
||||
}
|
||||
|
||||
declare class Electron$Menu {
|
||||
static setApplicationMenu: (menu: Electron$Menu) => void,
|
||||
static getApplicationMenu: () => ?Electron$Menu,
|
||||
static sendActionToFirstResponder: (action: string) => void,
|
||||
static buildFromTemplate: (templates: Array<Electron$MenuItemOptions>) => Electron$Menu,
|
||||
popup: (
|
||||
browserWindow: Object,
|
||||
x?: number,
|
||||
y?: number,
|
||||
positioningItem?: number,
|
||||
) => void,
|
||||
popup: (x?: number, y?: number, positioningItem?: number) => void,
|
||||
append: (menuItem: Electron$MenuItem) => void,
|
||||
insert: (pos: number, menuItem: Electron$MenuItem) => void,
|
||||
items: Array<Electron$MenuItem>,
|
||||
}
|
||||
192
flow-typed/npm/JSONStream_vx.x.x.js
vendored
Normal file
192
flow-typed/npm/JSONStream_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,192 @@
|
||||
// flow-typed signature: 2e82c8be2483588f05be3476cd2af900
|
||||
// flow-typed version: <<STUB>>/JSONStream_v^1.3.1/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'JSONStream'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'JSONStream' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'JSONStream/examples/all_docs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/bool' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/browser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/destroy_missing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/disabled/doubledot1' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/disabled/doubledot2' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/empty' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/error_contents' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/fn' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/gen' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/header_footer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/issues' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/keys' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/map' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/multiple_objects_error' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/multiple_objects' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/null' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/parsejson' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/stringify_object' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/stringify' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/test' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/test2' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'JSONStream/test/two-ways' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'JSONStream/examples/all_docs.js' {
|
||||
declare module.exports: $Exports<'JSONStream/examples/all_docs'>;
|
||||
}
|
||||
declare module 'JSONStream/index' {
|
||||
declare module.exports: $Exports<'JSONStream'>;
|
||||
}
|
||||
declare module 'JSONStream/index.js' {
|
||||
declare module.exports: $Exports<'JSONStream'>;
|
||||
}
|
||||
declare module 'JSONStream/test/bool.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/bool'>;
|
||||
}
|
||||
declare module 'JSONStream/test/browser.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/browser'>;
|
||||
}
|
||||
declare module 'JSONStream/test/destroy_missing.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/destroy_missing'>;
|
||||
}
|
||||
declare module 'JSONStream/test/disabled/doubledot1.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/disabled/doubledot1'>;
|
||||
}
|
||||
declare module 'JSONStream/test/disabled/doubledot2.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/disabled/doubledot2'>;
|
||||
}
|
||||
declare module 'JSONStream/test/empty.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/empty'>;
|
||||
}
|
||||
declare module 'JSONStream/test/error_contents.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/error_contents'>;
|
||||
}
|
||||
declare module 'JSONStream/test/fn.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/fn'>;
|
||||
}
|
||||
declare module 'JSONStream/test/gen.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/gen'>;
|
||||
}
|
||||
declare module 'JSONStream/test/header_footer.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/header_footer'>;
|
||||
}
|
||||
declare module 'JSONStream/test/issues.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/issues'>;
|
||||
}
|
||||
declare module 'JSONStream/test/keys.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/keys'>;
|
||||
}
|
||||
declare module 'JSONStream/test/map.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/map'>;
|
||||
}
|
||||
declare module 'JSONStream/test/multiple_objects_error.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/multiple_objects_error'>;
|
||||
}
|
||||
declare module 'JSONStream/test/multiple_objects.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/multiple_objects'>;
|
||||
}
|
||||
declare module 'JSONStream/test/null.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/null'>;
|
||||
}
|
||||
declare module 'JSONStream/test/parsejson.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/parsejson'>;
|
||||
}
|
||||
declare module 'JSONStream/test/stringify_object.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/stringify_object'>;
|
||||
}
|
||||
declare module 'JSONStream/test/stringify.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/stringify'>;
|
||||
}
|
||||
declare module 'JSONStream/test/test.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/test'>;
|
||||
}
|
||||
declare module 'JSONStream/test/test2.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/test2'>;
|
||||
}
|
||||
declare module 'JSONStream/test/two-ways.js' {
|
||||
declare module.exports: $Exports<'JSONStream/test/two-ways'>;
|
||||
}
|
||||
507
flow-typed/npm/adbkit-fb_vx.x.x.js
vendored
Normal file
507
flow-typed/npm/adbkit-fb_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,507 @@
|
||||
// flow-typed signature: 7849d9ce4b390afcfc917a08445a20eb
|
||||
// flow-typed version: <<STUB>>/adbkit-fb_v2.10.1/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'adbkit-fb'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'adbkit-fb' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'adbkit-fb/lib/adb' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/auth' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/client' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/forward' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/getdevicepath' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/getserialno' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/getstate' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/listforwards' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/waitfordevice' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/clear' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/framebuffer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/getfeatures' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/getpackages' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/getproperties' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/install' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/isinstalled' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/listreverses' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/local' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/log' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/logcat' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/monkey' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/reboot' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/remount' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/reverse' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/root' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/screencap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/shell' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/startactivity' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/startservice' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/sync' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/tcp' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/tcpip' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/trackjdwp' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/uninstall' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/usb' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/waitbootcomplete' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host/connect' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host/devices' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host/deviceswithpaths' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host/disconnect' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host/kill' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host/trackdevices' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host/transport' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/command/host/version' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/connection' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/dump' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/framebuffer/rgbtransform' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/keycode' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/linetransform' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/parser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/proc/stat' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/protocol' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/sync' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/sync/entry' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/sync/pulltransfer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/sync/pushtransfer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/sync/stats' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/packet' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/packetreader' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/rollingcounter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/server' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/service' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/servicemap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/socket' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/tracker' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/adb/util' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-fb/lib/cli' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'adbkit-fb/index' {
|
||||
declare module.exports: $Exports<'adbkit-fb'>;
|
||||
}
|
||||
declare module 'adbkit-fb/index.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/auth.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/auth'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/client.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/client'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/forward.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-serial/forward'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/getdevicepath.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-serial/getdevicepath'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/getserialno.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-serial/getserialno'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/getstate.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-serial/getstate'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/listforwards.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-serial/listforwards'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-serial/waitfordevice.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-serial/waitfordevice'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/clear.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/clear'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/framebuffer.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/framebuffer'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/getfeatures.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/getfeatures'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/getpackages.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/getpackages'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/getproperties.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/getproperties'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/install.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/install'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/isinstalled.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/isinstalled'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/listreverses.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/listreverses'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/local.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/local'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/log.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/log'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/logcat.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/logcat'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/monkey.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/monkey'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/reboot.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/reboot'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/remount.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/remount'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/reverse.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/reverse'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/root.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/root'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/screencap.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/screencap'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/shell.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/shell'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/startactivity.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/startactivity'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/startservice.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/startservice'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/sync.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/sync'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/tcp.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/tcp'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/tcpip.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/tcpip'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/trackjdwp.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/trackjdwp'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/uninstall.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/uninstall'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/usb.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/usb'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host-transport/waitbootcomplete.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host-transport/waitbootcomplete'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host/connect.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host/connect'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host/devices.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host/devices'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host/deviceswithpaths.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host/deviceswithpaths'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host/disconnect.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host/disconnect'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host/kill.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host/kill'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host/trackdevices.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host/trackdevices'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host/transport.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host/transport'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/command/host/version.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/command/host/version'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/connection.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/connection'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/dump.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/dump'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/framebuffer/rgbtransform.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/framebuffer/rgbtransform'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/keycode.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/keycode'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/linetransform.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/linetransform'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/parser.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/parser'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/proc/stat.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/proc/stat'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/protocol.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/protocol'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/sync.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/sync'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/sync/entry.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/sync/entry'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/sync/pulltransfer.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/sync/pulltransfer'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/sync/pushtransfer.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/sync/pushtransfer'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/sync/stats.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/sync/stats'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/packet.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/tcpusb/packet'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/packetreader.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/tcpusb/packetreader'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/rollingcounter.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/tcpusb/rollingcounter'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/server.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/tcpusb/server'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/service.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/tcpusb/service'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/servicemap.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/tcpusb/servicemap'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/tcpusb/socket.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/tcpusb/socket'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/tracker.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/tracker'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/adb/util.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/adb/util'>;
|
||||
}
|
||||
declare module 'adbkit-fb/lib/cli.js' {
|
||||
declare module.exports: $Exports<'adbkit-fb/lib/cli'>;
|
||||
}
|
||||
80
flow-typed/npm/adbkit-logcat-fb_vx.x.x.js
vendored
Normal file
80
flow-typed/npm/adbkit-logcat-fb_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
// flow-typed signature: 4c4fcc7d39703336b04af263e250bdd1
|
||||
// flow-typed version: <<STUB>>/adbkit-logcat-fb_v1.1.0/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'adbkit-logcat-fb'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'adbkit-logcat-fb' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'adbkit-logcat-fb/lib/logcat' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/entry' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/parser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/parser/binary' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/priority' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/reader' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/transform' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'adbkit-logcat-fb/index' {
|
||||
declare module.exports: $Exports<'adbkit-logcat-fb'>;
|
||||
}
|
||||
declare module 'adbkit-logcat-fb/index.js' {
|
||||
declare module.exports: $Exports<'adbkit-logcat-fb'>;
|
||||
}
|
||||
declare module 'adbkit-logcat-fb/lib/logcat.js' {
|
||||
declare module.exports: $Exports<'adbkit-logcat-fb/lib/logcat'>;
|
||||
}
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/entry.js' {
|
||||
declare module.exports: $Exports<'adbkit-logcat-fb/lib/logcat/entry'>;
|
||||
}
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/parser.js' {
|
||||
declare module.exports: $Exports<'adbkit-logcat-fb/lib/logcat/parser'>;
|
||||
}
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/parser/binary.js' {
|
||||
declare module.exports: $Exports<'adbkit-logcat-fb/lib/logcat/parser/binary'>;
|
||||
}
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/priority.js' {
|
||||
declare module.exports: $Exports<'adbkit-logcat-fb/lib/logcat/priority'>;
|
||||
}
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/reader.js' {
|
||||
declare module.exports: $Exports<'adbkit-logcat-fb/lib/logcat/reader'>;
|
||||
}
|
||||
declare module 'adbkit-logcat-fb/lib/logcat/transform.js' {
|
||||
declare module.exports: $Exports<'adbkit-logcat-fb/lib/logcat/transform'>;
|
||||
}
|
||||
108
flow-typed/npm/babel-cli_vx.x.x.js
vendored
Normal file
108
flow-typed/npm/babel-cli_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,108 @@
|
||||
// flow-typed signature: 0f7f1ee584ef43d0f9403cfe273cc39d
|
||||
// flow-typed version: <<STUB>>/babel-cli_v7.0.0-alpha.12/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-cli'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-cli' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-cli/bin/babel-doctor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-cli/bin/babel-external-helpers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-cli/bin/babel-node' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-cli/bin/babel' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-cli/lib/_babel-node' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-cli/lib/babel-external-helpers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-cli/lib/babel-node' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-cli/lib/babel/dir' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-cli/lib/babel/file' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-cli/lib/babel/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-cli/lib/babel/util' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-cli/bin/babel-doctor.js' {
|
||||
declare module.exports: $Exports<'babel-cli/bin/babel-doctor'>;
|
||||
}
|
||||
declare module 'babel-cli/bin/babel-external-helpers.js' {
|
||||
declare module.exports: $Exports<'babel-cli/bin/babel-external-helpers'>;
|
||||
}
|
||||
declare module 'babel-cli/bin/babel-node.js' {
|
||||
declare module.exports: $Exports<'babel-cli/bin/babel-node'>;
|
||||
}
|
||||
declare module 'babel-cli/bin/babel.js' {
|
||||
declare module.exports: $Exports<'babel-cli/bin/babel'>;
|
||||
}
|
||||
declare module 'babel-cli/index' {
|
||||
declare module.exports: $Exports<'babel-cli'>;
|
||||
}
|
||||
declare module 'babel-cli/index.js' {
|
||||
declare module.exports: $Exports<'babel-cli'>;
|
||||
}
|
||||
declare module 'babel-cli/lib/_babel-node.js' {
|
||||
declare module.exports: $Exports<'babel-cli/lib/_babel-node'>;
|
||||
}
|
||||
declare module 'babel-cli/lib/babel-external-helpers.js' {
|
||||
declare module.exports: $Exports<'babel-cli/lib/babel-external-helpers'>;
|
||||
}
|
||||
declare module 'babel-cli/lib/babel-node.js' {
|
||||
declare module.exports: $Exports<'babel-cli/lib/babel-node'>;
|
||||
}
|
||||
declare module 'babel-cli/lib/babel/dir.js' {
|
||||
declare module.exports: $Exports<'babel-cli/lib/babel/dir'>;
|
||||
}
|
||||
declare module 'babel-cli/lib/babel/file.js' {
|
||||
declare module.exports: $Exports<'babel-cli/lib/babel/file'>;
|
||||
}
|
||||
declare module 'babel-cli/lib/babel/index.js' {
|
||||
declare module.exports: $Exports<'babel-cli/lib/babel/index'>;
|
||||
}
|
||||
declare module 'babel-cli/lib/babel/util.js' {
|
||||
declare module.exports: $Exports<'babel-cli/lib/babel/util'>;
|
||||
}
|
||||
32
flow-typed/npm/babel-code-frame_vx.x.x.js
vendored
Normal file
32
flow-typed/npm/babel-code-frame_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// flow-typed signature: d1d2d301b3f753cb6d40f8ac6d8df8c8
|
||||
// flow-typed version: <<STUB>>/babel-code-frame_v^6.22.0/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-code-frame'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-code-frame' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-code-frame/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-code-frame/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-code-frame/lib/index'>;
|
||||
}
|
||||
171
flow-typed/npm/babel-core_vx.x.x.js
vendored
Normal file
171
flow-typed/npm/babel-core_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,171 @@
|
||||
// flow-typed signature: 8f20b8fc8e610a76416674f109b1d8bc
|
||||
// flow-typed version: <<STUB>>/babel-core_v7.0.0-alpha.12/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-core'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-core' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-core/lib/config/build-config-chain' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/config/caching' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/config/helpers/environment' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/config/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/config/loading/files/configuration' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/config/loading/files/index-browser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/config/loading/files/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/config/loading/files/plugins' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/config/option-manager' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/config/plugin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/config/removed' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/tools/build-external-helpers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/transformation/file/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/transformation/file/metadata' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/transformation/internal-plugins/block-hoist' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/transformation/pipeline' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/transformation/plugin-pass' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/lib/transformation/store' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-core/register' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-core/index' {
|
||||
declare module.exports: $Exports<'babel-core'>;
|
||||
}
|
||||
declare module 'babel-core/index.js' {
|
||||
declare module.exports: $Exports<'babel-core'>;
|
||||
}
|
||||
declare module 'babel-core/lib/config/build-config-chain.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/config/build-config-chain'>;
|
||||
}
|
||||
declare module 'babel-core/lib/config/caching.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/config/caching'>;
|
||||
}
|
||||
declare module 'babel-core/lib/config/helpers/environment.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/config/helpers/environment'>;
|
||||
}
|
||||
declare module 'babel-core/lib/config/index.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/config/index'>;
|
||||
}
|
||||
declare module 'babel-core/lib/config/loading/files/configuration.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/config/loading/files/configuration'>;
|
||||
}
|
||||
declare module 'babel-core/lib/config/loading/files/index-browser.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/config/loading/files/index-browser'>;
|
||||
}
|
||||
declare module 'babel-core/lib/config/loading/files/index.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/config/loading/files/index'>;
|
||||
}
|
||||
declare module 'babel-core/lib/config/loading/files/plugins.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/config/loading/files/plugins'>;
|
||||
}
|
||||
declare module 'babel-core/lib/config/option-manager.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/config/option-manager'>;
|
||||
}
|
||||
declare module 'babel-core/lib/config/plugin.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/config/plugin'>;
|
||||
}
|
||||
declare module 'babel-core/lib/config/removed.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/config/removed'>;
|
||||
}
|
||||
declare module 'babel-core/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/index'>;
|
||||
}
|
||||
declare module 'babel-core/lib/tools/build-external-helpers.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/tools/build-external-helpers'>;
|
||||
}
|
||||
declare module 'babel-core/lib/transformation/file/index.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/transformation/file/index'>;
|
||||
}
|
||||
declare module 'babel-core/lib/transformation/file/metadata.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/transformation/file/metadata'>;
|
||||
}
|
||||
declare module 'babel-core/lib/transformation/internal-plugins/block-hoist.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/transformation/internal-plugins/block-hoist'>;
|
||||
}
|
||||
declare module 'babel-core/lib/transformation/pipeline.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/transformation/pipeline'>;
|
||||
}
|
||||
declare module 'babel-core/lib/transformation/plugin-pass.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/transformation/plugin-pass'>;
|
||||
}
|
||||
declare module 'babel-core/lib/transformation/store.js' {
|
||||
declare module.exports: $Exports<'babel-core/lib/transformation/store'>;
|
||||
}
|
||||
declare module 'babel-core/register.js' {
|
||||
declare module.exports: $Exports<'babel-core/register'>;
|
||||
}
|
||||
80
flow-typed/npm/babel-eslint_vx.x.x.js
vendored
Normal file
80
flow-typed/npm/babel-eslint_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
// flow-typed signature: 1fb22ed9a932c432e0fdd6cf6450c58e
|
||||
// flow-typed version: <<STUB>>/babel-eslint_v7.2.3/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-eslint'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-eslint' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-eslint/babylon-to-espree/attachComments' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/babylon-to-espree/convertComments' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/babylon-to-espree/convertTemplateType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/babylon-to-espree/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/babylon-to-espree/toAST' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/babylon-to-espree/toToken' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/babylon-to-espree/toTokens' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-eslint/babylon-to-espree/attachComments.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/babylon-to-espree/attachComments'>;
|
||||
}
|
||||
declare module 'babel-eslint/babylon-to-espree/convertComments.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/babylon-to-espree/convertComments'>;
|
||||
}
|
||||
declare module 'babel-eslint/babylon-to-espree/convertTemplateType.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/babylon-to-espree/convertTemplateType'>;
|
||||
}
|
||||
declare module 'babel-eslint/babylon-to-espree/index.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/babylon-to-espree/index'>;
|
||||
}
|
||||
declare module 'babel-eslint/babylon-to-espree/toAST.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/babylon-to-espree/toAST'>;
|
||||
}
|
||||
declare module 'babel-eslint/babylon-to-espree/toToken.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/babylon-to-espree/toToken'>;
|
||||
}
|
||||
declare module 'babel-eslint/babylon-to-espree/toTokens.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/babylon-to-espree/toTokens'>;
|
||||
}
|
||||
declare module 'babel-eslint/index' {
|
||||
declare module.exports: $Exports<'babel-eslint'>;
|
||||
}
|
||||
declare module 'babel-eslint/index.js' {
|
||||
declare module.exports: $Exports<'babel-eslint'>;
|
||||
}
|
||||
151
flow-typed/npm/babel-generator_vx.x.x.js
vendored
Normal file
151
flow-typed/npm/babel-generator_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,151 @@
|
||||
// flow-typed signature: 0b1639e0bffdd43bd3a51636725d6b05
|
||||
// flow-typed version: <<STUB>>/babel-generator_v^6.24.1/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-generator'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-generator' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-generator/lib/buffer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/generators/base' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/generators/classes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/generators/expressions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/generators/flow' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/generators/jsx' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/generators/methods' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/generators/modules' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/generators/statements' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/generators/template-literals' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/generators/types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/node/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/node/parentheses' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/node/whitespace' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/printer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/source-map' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-generator/lib/whitespace' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-generator/lib/buffer.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/buffer'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/generators/base.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/generators/base'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/generators/classes.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/generators/classes'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/generators/expressions.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/generators/expressions'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/generators/flow.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/generators/flow'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/generators/jsx.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/generators/jsx'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/generators/methods.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/generators/methods'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/generators/modules.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/generators/modules'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/generators/statements.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/generators/statements'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/generators/template-literals.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/generators/template-literals'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/generators/types.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/generators/types'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/index'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/node/index.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/node/index'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/node/parentheses.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/node/parentheses'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/node/whitespace.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/node/whitespace'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/printer.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/printer'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/source-map.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/source-map'>;
|
||||
}
|
||||
declare module 'babel-generator/lib/whitespace.js' {
|
||||
declare module.exports: $Exports<'babel-generator/lib/whitespace'>;
|
||||
}
|
||||
32
flow-typed/npm/babel-plugin-transform-class-properties_vx.x.x.js
vendored
Normal file
32
flow-typed/npm/babel-plugin-transform-class-properties_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// flow-typed signature: b952c89ce390b876119ae568acff43b6
|
||||
// flow-typed version: <<STUB>>/babel-plugin-transform-class-properties_v7.0.0-alpha.12/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-plugin-transform-class-properties'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-plugin-transform-class-properties' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-plugin-transform-class-properties/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-plugin-transform-class-properties/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-plugin-transform-class-properties/lib/index'>;
|
||||
}
|
||||
32
flow-typed/npm/babel-plugin-transform-es2015-destructuring_vx.x.x.js
vendored
Normal file
32
flow-typed/npm/babel-plugin-transform-es2015-destructuring_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// flow-typed signature: 1bad2e410546918dc0e7272dc87e0a34
|
||||
// flow-typed version: <<STUB>>/babel-plugin-transform-es2015-destructuring_v7.0.0-alpha.12/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-plugin-transform-es2015-destructuring'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-plugin-transform-es2015-destructuring' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-plugin-transform-es2015-destructuring/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-plugin-transform-es2015-destructuring/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-plugin-transform-es2015-destructuring/lib/index'>;
|
||||
}
|
||||
32
flow-typed/npm/babel-plugin-transform-es2015-modules-commonjs_vx.x.x.js
vendored
Normal file
32
flow-typed/npm/babel-plugin-transform-es2015-modules-commonjs_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// flow-typed signature: bc928daf5d3cf67f45a4ae5920314b13
|
||||
// flow-typed version: <<STUB>>/babel-plugin-transform-es2015-modules-commonjs_v7.0.0-alpha.12/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-plugin-transform-es2015-modules-commonjs'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-plugin-transform-es2015-modules-commonjs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-plugin-transform-es2015-modules-commonjs/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-plugin-transform-es2015-modules-commonjs/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-plugin-transform-es2015-modules-commonjs/lib/index'>;
|
||||
}
|
||||
32
flow-typed/npm/babel-plugin-transform-flow-strip-types_vx.x.x.js
vendored
Normal file
32
flow-typed/npm/babel-plugin-transform-flow-strip-types_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// flow-typed signature: 8f14e19a39c2bd3974954eea41f59410
|
||||
// flow-typed version: <<STUB>>/babel-plugin-transform-flow-strip-types_v7.0.0-alpha.12/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-plugin-transform-flow-strip-types'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-plugin-transform-flow-strip-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-plugin-transform-flow-strip-types/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-plugin-transform-flow-strip-types/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-plugin-transform-flow-strip-types/lib/index'>;
|
||||
}
|
||||
32
flow-typed/npm/babel-plugin-transform-object-rest-spread_vx.x.x.js
vendored
Normal file
32
flow-typed/npm/babel-plugin-transform-object-rest-spread_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// flow-typed signature: 529d59fc1e249a090e2a76a3835db876
|
||||
// flow-typed version: <<STUB>>/babel-plugin-transform-object-rest-spread_v7.0.0-alpha.12/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-plugin-transform-object-rest-spread'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-plugin-transform-object-rest-spread' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-plugin-transform-object-rest-spread/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-plugin-transform-object-rest-spread/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-plugin-transform-object-rest-spread/lib/index'>;
|
||||
}
|
||||
32
flow-typed/npm/babel-preset-react_vx.x.x.js
vendored
Normal file
32
flow-typed/npm/babel-preset-react_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// flow-typed signature: 1daf2e279938e1a1932c392cf775b7dc
|
||||
// flow-typed version: <<STUB>>/babel-preset-react_v7.0.0-alpha.12/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-preset-react'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-preset-react' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-preset-react/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-preset-react/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-preset-react/lib/index'>;
|
||||
}
|
||||
46
flow-typed/npm/babel-register_vx.x.x.js
vendored
Normal file
46
flow-typed/npm/babel-register_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
// flow-typed signature: d1ce10c85f971481323ed89a9b5029e0
|
||||
// flow-typed version: <<STUB>>/babel-register_v7.0.0-alpha.12/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-register'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-register' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-register/lib/browser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-register/lib/cache' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-register/lib/node' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-register/lib/browser.js' {
|
||||
declare module.exports: $Exports<'babel-register/lib/browser'>;
|
||||
}
|
||||
declare module 'babel-register/lib/cache.js' {
|
||||
declare module.exports: $Exports<'babel-register/lib/cache'>;
|
||||
}
|
||||
declare module 'babel-register/lib/node.js' {
|
||||
declare module.exports: $Exports<'babel-register/lib/node'>;
|
||||
}
|
||||
200
flow-typed/npm/babel-traverse_vx.x.x.js
vendored
Normal file
200
flow-typed/npm/babel-traverse_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,200 @@
|
||||
// flow-typed signature: b39ccdff10eaf6fe22d8bbd6a6415324
|
||||
// flow-typed version: <<STUB>>/babel-traverse_v7.0.0-alpha.12/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-traverse'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-traverse' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-traverse/lib/cache' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/context' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/hub' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/ancestry' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/comments' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/context' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/conversion' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/evaluation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/family' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/inference/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/inference/inferer-reference' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/inference/inferers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/introspection' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/lib/hoister' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/lib/removal-hooks' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/lib/virtual-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/modification' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/removal' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/path/replacement' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/scope/binding' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/scope/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/scope/lib/renamer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-traverse/lib/visitors' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-traverse/lib/cache.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/cache'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/context.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/context'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/hub.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/hub'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/index'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/ancestry.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/ancestry'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/comments.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/comments'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/context.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/context'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/conversion.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/conversion'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/evaluation.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/evaluation'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/family.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/family'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/index.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/index'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/inference/index.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/inference/index'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/inference/inferer-reference.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/inference/inferer-reference'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/inference/inferers.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/inference/inferers'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/introspection.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/introspection'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/lib/hoister.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/lib/hoister'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/lib/removal-hooks.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/lib/removal-hooks'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/lib/virtual-types.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/lib/virtual-types'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/modification.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/modification'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/removal.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/removal'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/path/replacement.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/path/replacement'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/scope/binding.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/scope/binding'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/scope/index.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/scope/index'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/scope/lib/renamer.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/scope/lib/renamer'>;
|
||||
}
|
||||
declare module 'babel-traverse/lib/visitors.js' {
|
||||
declare module.exports: $Exports<'babel-traverse/lib/visitors'>;
|
||||
}
|
||||
46
flow-typed/npm/babylon_vx.x.x.js
vendored
Normal file
46
flow-typed/npm/babylon_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
// flow-typed signature: f472557a9bcea4a046c88cdcdd21ff40
|
||||
// flow-typed version: <<STUB>>/babylon_v7.0.0-beta.14/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babylon'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babylon' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babylon/bin/babylon' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babylon/bin/generate-identifier-regex' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babylon/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babylon/bin/babylon.js' {
|
||||
declare module.exports: $Exports<'babylon/bin/babylon'>;
|
||||
}
|
||||
declare module 'babylon/bin/generate-identifier-regex.js' {
|
||||
declare module.exports: $Exports<'babylon/bin/generate-identifier-regex'>;
|
||||
}
|
||||
declare module 'babylon/lib/index.js' {
|
||||
declare module.exports: $Exports<'babylon/lib/index'>;
|
||||
}
|
||||
114
flow-typed/npm/chalk_v1.x.x.js
vendored
Normal file
114
flow-typed/npm/chalk_v1.x.x.js
vendored
Normal file
@@ -0,0 +1,114 @@
|
||||
// flow-typed signature: b1a2d646047879188d7e44cb218212b5
|
||||
// flow-typed version: b43dff3e0e/chalk_v1.x.x/flow_>=v0.19.x
|
||||
|
||||
type $npm$chalk$StyleElement = {
|
||||
open: string;
|
||||
close: string;
|
||||
};
|
||||
|
||||
type $npm$chalk$Chain = $npm$chalk$Style & (...text: any[]) => string;
|
||||
|
||||
type $npm$chalk$Style = {
|
||||
// General
|
||||
reset: $npm$chalk$Chain;
|
||||
bold: $npm$chalk$Chain;
|
||||
dim: $npm$chalk$Chain;
|
||||
italic: $npm$chalk$Chain;
|
||||
underline: $npm$chalk$Chain;
|
||||
inverse: $npm$chalk$Chain;
|
||||
strikethrough: $npm$chalk$Chain;
|
||||
|
||||
// Text colors
|
||||
black: $npm$chalk$Chain;
|
||||
red: $npm$chalk$Chain;
|
||||
green: $npm$chalk$Chain;
|
||||
yellow: $npm$chalk$Chain;
|
||||
blue: $npm$chalk$Chain;
|
||||
magenta: $npm$chalk$Chain;
|
||||
cyan: $npm$chalk$Chain;
|
||||
white: $npm$chalk$Chain;
|
||||
gray: $npm$chalk$Chain;
|
||||
grey: $npm$chalk$Chain;
|
||||
|
||||
// Background colors
|
||||
bgBlack: $npm$chalk$Chain;
|
||||
bgRed: $npm$chalk$Chain;
|
||||
bgGreen: $npm$chalk$Chain;
|
||||
bgYellow: $npm$chalk$Chain;
|
||||
bgBlue: $npm$chalk$Chain;
|
||||
bgMagenta: $npm$chalk$Chain;
|
||||
bgCyan: $npm$chalk$Chain;
|
||||
bgWhite: $npm$chalk$Chain;
|
||||
};
|
||||
|
||||
type $npm$chalk$StyleMap = {
|
||||
// General
|
||||
reset: $npm$chalk$StyleElement;
|
||||
bold: $npm$chalk$StyleElement;
|
||||
dim: $npm$chalk$StyleElement;
|
||||
italic: $npm$chalk$StyleElement;
|
||||
underline: $npm$chalk$StyleElement;
|
||||
inverse: $npm$chalk$StyleElement;
|
||||
strikethrough: $npm$chalk$StyleElement;
|
||||
|
||||
// Text colors
|
||||
black: $npm$chalk$StyleElement;
|
||||
red: $npm$chalk$StyleElement;
|
||||
green: $npm$chalk$StyleElement;
|
||||
yellow: $npm$chalk$StyleElement;
|
||||
blue: $npm$chalk$StyleElement;
|
||||
magenta: $npm$chalk$StyleElement;
|
||||
cyan: $npm$chalk$StyleElement;
|
||||
white: $npm$chalk$StyleElement;
|
||||
gray: $npm$chalk$StyleElement;
|
||||
|
||||
// Background colors
|
||||
bgBlack: $npm$chalk$StyleElement;
|
||||
bgRed: $npm$chalk$StyleElement;
|
||||
bgGreen: $npm$chalk$StyleElement;
|
||||
bgYellow: $npm$chalk$StyleElement;
|
||||
bgBlue: $npm$chalk$StyleElement;
|
||||
bgMagenta: $npm$chalk$StyleElement;
|
||||
bgCyan: $npm$chalk$StyleElement;
|
||||
bgWhite: $npm$chalk$StyleElement;
|
||||
};
|
||||
|
||||
declare module "chalk" {
|
||||
declare var enabled: boolean;
|
||||
declare var supportsColor: boolean;
|
||||
declare var styles: $npm$chalk$StyleMap;
|
||||
|
||||
declare function stripColor(value: string): any;
|
||||
declare function hasColor(str: string): boolean;
|
||||
|
||||
// General
|
||||
declare var reset: $npm$chalk$Chain;
|
||||
declare var bold: $npm$chalk$Chain;
|
||||
declare var dim: $npm$chalk$Chain;
|
||||
declare var italic: $npm$chalk$Chain;
|
||||
declare var underline: $npm$chalk$Chain;
|
||||
declare var inverse: $npm$chalk$Chain;
|
||||
declare var strikethrough: $npm$chalk$Chain;
|
||||
|
||||
// Text colors
|
||||
declare var black: $npm$chalk$Chain;
|
||||
declare var red: $npm$chalk$Chain;
|
||||
declare var green: $npm$chalk$Chain;
|
||||
declare var yellow: $npm$chalk$Chain;
|
||||
declare var blue: $npm$chalk$Chain;
|
||||
declare var magenta: $npm$chalk$Chain;
|
||||
declare var cyan: $npm$chalk$Chain;
|
||||
declare var white: $npm$chalk$Chain;
|
||||
declare var gray: $npm$chalk$Chain;
|
||||
declare var grey: $npm$chalk$Chain;
|
||||
|
||||
// Background colors
|
||||
declare var bgBlack: $npm$chalk$Chain;
|
||||
declare var bgRed: $npm$chalk$Chain;
|
||||
declare var bgGreen: $npm$chalk$Chain;
|
||||
declare var bgYellow: $npm$chalk$Chain;
|
||||
declare var bgBlue: $npm$chalk$Chain;
|
||||
declare var bgMagenta: $npm$chalk$Chain;
|
||||
declare var bgCyan: $npm$chalk$Chain;
|
||||
declare var bgWhite: $npm$chalk$Chain;
|
||||
}
|
||||
1761
flow-typed/npm/codemirror_vx.x.x.js
vendored
Normal file
1761
flow-typed/npm/codemirror_vx.x.x.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
33
flow-typed/npm/dashify_vx.x.x.js
vendored
Normal file
33
flow-typed/npm/dashify_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
// flow-typed signature: b26465a763805506e2f1120d04ab58eb
|
||||
// flow-typed version: <<STUB>>/dashify_v^0.2.2/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'dashify'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'dashify' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
|
||||
|
||||
// Filename aliases
|
||||
declare module 'dashify/index' {
|
||||
declare module.exports: $Exports<'dashify'>;
|
||||
}
|
||||
declare module 'dashify/index.js' {
|
||||
declare module.exports: $Exports<'dashify'>;
|
||||
}
|
||||
59
flow-typed/npm/deep-equal_vx.x.x.js
vendored
Normal file
59
flow-typed/npm/deep-equal_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
// flow-typed signature: ac858859a846498c06179ada0c8b78a1
|
||||
// flow-typed version: <<STUB>>/deep-equal_v^1.0.1/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'deep-equal'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'deep-equal' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'deep-equal/example/cmp' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'deep-equal/lib/is_arguments' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'deep-equal/lib/keys' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'deep-equal/test/cmp' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'deep-equal/example/cmp.js' {
|
||||
declare module.exports: $Exports<'deep-equal/example/cmp'>;
|
||||
}
|
||||
declare module 'deep-equal/index' {
|
||||
declare module.exports: $Exports<'deep-equal'>;
|
||||
}
|
||||
declare module 'deep-equal/index.js' {
|
||||
declare module.exports: $Exports<'deep-equal'>;
|
||||
}
|
||||
declare module 'deep-equal/lib/is_arguments.js' {
|
||||
declare module.exports: $Exports<'deep-equal/lib/is_arguments'>;
|
||||
}
|
||||
declare module 'deep-equal/lib/keys.js' {
|
||||
declare module.exports: $Exports<'deep-equal/lib/keys'>;
|
||||
}
|
||||
declare module 'deep-equal/test/cmp.js' {
|
||||
declare module.exports: $Exports<'deep-equal/test/cmp'>;
|
||||
}
|
||||
38
flow-typed/npm/detect-port_vx.x.x.js
vendored
Normal file
38
flow-typed/npm/detect-port_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
// flow-typed signature: ca3761607eebb8eefa0b0b2cd828537f
|
||||
// flow-typed version: <<STUB>>/detect-port_v^1.1.1/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'detect-port'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'detect-port' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'detect-port/lib/detect-port' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'detect-port/index' {
|
||||
declare module.exports: $Exports<'detect-port'>;
|
||||
}
|
||||
declare module 'detect-port/index.js' {
|
||||
declare module.exports: $Exports<'detect-port'>;
|
||||
}
|
||||
declare module 'detect-port/lib/detect-port.js' {
|
||||
declare module.exports: $Exports<'detect-port/lib/detect-port'>;
|
||||
}
|
||||
347
flow-typed/npm/electron-builder_vx.x.x.js
vendored
Normal file
347
flow-typed/npm/electron-builder_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,347 @@
|
||||
// flow-typed signature: 0782c9570706be2268d543150a4f38dc
|
||||
// flow-typed version: <<STUB>>/electron-builder_v^16.8.3/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'electron-builder'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'electron-builder' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'electron-builder/out/appInfo' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/asar' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/asarUtil' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/builder' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/cli/build-cli' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/cli/cliOptions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/cli/create-self-signed-cert' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/cli/install-app-deps' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/cli/node-gyp-rebuild' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/codeSign' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/errorMessages' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/fileMatcher' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/fileTransformer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/forge/forge-maker' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/linuxPackager' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/macPackager' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/metadata' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/options/linuxOptions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/options/macOptions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/options/winOptions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/packager' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/packager/dirPackager' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/packager/mac' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/packagerApi' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/platformPackager' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/publish/PublishManager' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/readInstalled' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/repositoryInfo' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/appImage' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/appx' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/archive' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/ArchiveTarget' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/dmg' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/fpm' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/LinuxTargetHelper' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/nsis' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/pkg' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/snap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/targetFactory' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/targets/WebInstallerTarget' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/util/filter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/util/readPackageJson' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/windowsCodeSign' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/winPackager' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-builder/out/yarn' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'electron-builder/out/appInfo.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/appInfo'>;
|
||||
}
|
||||
declare module 'electron-builder/out/asar.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/asar'>;
|
||||
}
|
||||
declare module 'electron-builder/out/asarUtil.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/asarUtil'>;
|
||||
}
|
||||
declare module 'electron-builder/out/builder.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/builder'>;
|
||||
}
|
||||
declare module 'electron-builder/out/cli/build-cli.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/cli/build-cli'>;
|
||||
}
|
||||
declare module 'electron-builder/out/cli/cliOptions.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/cli/cliOptions'>;
|
||||
}
|
||||
declare module 'electron-builder/out/cli/create-self-signed-cert.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/cli/create-self-signed-cert'>;
|
||||
}
|
||||
declare module 'electron-builder/out/cli/install-app-deps.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/cli/install-app-deps'>;
|
||||
}
|
||||
declare module 'electron-builder/out/cli/node-gyp-rebuild.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/cli/node-gyp-rebuild'>;
|
||||
}
|
||||
declare module 'electron-builder/out/codeSign.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/codeSign'>;
|
||||
}
|
||||
declare module 'electron-builder/out/errorMessages.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/errorMessages'>;
|
||||
}
|
||||
declare module 'electron-builder/out/fileMatcher.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/fileMatcher'>;
|
||||
}
|
||||
declare module 'electron-builder/out/fileTransformer.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/fileTransformer'>;
|
||||
}
|
||||
declare module 'electron-builder/out/forge/forge-maker.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/forge/forge-maker'>;
|
||||
}
|
||||
declare module 'electron-builder/out/index.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/index'>;
|
||||
}
|
||||
declare module 'electron-builder/out/linuxPackager.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/linuxPackager'>;
|
||||
}
|
||||
declare module 'electron-builder/out/macPackager.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/macPackager'>;
|
||||
}
|
||||
declare module 'electron-builder/out/metadata.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/metadata'>;
|
||||
}
|
||||
declare module 'electron-builder/out/options/linuxOptions.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/options/linuxOptions'>;
|
||||
}
|
||||
declare module 'electron-builder/out/options/macOptions.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/options/macOptions'>;
|
||||
}
|
||||
declare module 'electron-builder/out/options/winOptions.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/options/winOptions'>;
|
||||
}
|
||||
declare module 'electron-builder/out/packager.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/packager'>;
|
||||
}
|
||||
declare module 'electron-builder/out/packager/dirPackager.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/packager/dirPackager'>;
|
||||
}
|
||||
declare module 'electron-builder/out/packager/mac.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/packager/mac'>;
|
||||
}
|
||||
declare module 'electron-builder/out/packagerApi.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/packagerApi'>;
|
||||
}
|
||||
declare module 'electron-builder/out/platformPackager.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/platformPackager'>;
|
||||
}
|
||||
declare module 'electron-builder/out/publish/PublishManager.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/publish/PublishManager'>;
|
||||
}
|
||||
declare module 'electron-builder/out/readInstalled.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/readInstalled'>;
|
||||
}
|
||||
declare module 'electron-builder/out/repositoryInfo.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/repositoryInfo'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/appImage.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/appImage'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/appx.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/appx'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/archive.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/archive'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/ArchiveTarget.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/ArchiveTarget'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/dmg.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/dmg'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/fpm.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/fpm'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/LinuxTargetHelper.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/LinuxTargetHelper'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/nsis.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/nsis'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/pkg.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/pkg'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/snap.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/snap'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/targetFactory.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/targetFactory'>;
|
||||
}
|
||||
declare module 'electron-builder/out/targets/WebInstallerTarget.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/targets/WebInstallerTarget'>;
|
||||
}
|
||||
declare module 'electron-builder/out/util/filter.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/util/filter'>;
|
||||
}
|
||||
declare module 'electron-builder/out/util/readPackageJson.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/util/readPackageJson'>;
|
||||
}
|
||||
declare module 'electron-builder/out/windowsCodeSign.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/windowsCodeSign'>;
|
||||
}
|
||||
declare module 'electron-builder/out/winPackager.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/winPackager'>;
|
||||
}
|
||||
declare module 'electron-builder/out/yarn.js' {
|
||||
declare module.exports: $Exports<'electron-builder/out/yarn'>;
|
||||
}
|
||||
67
flow-typed/npm/electron-devtools-installer_vx.x.x.js
vendored
Normal file
67
flow-typed/npm/electron-devtools-installer_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
// flow-typed signature: fce58527cae3f8649ab3ffb72e58090c
|
||||
// flow-typed version: <<STUB>>/electron-devtools-installer_v^2.2.0/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'electron-devtools-installer'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'electron-devtools-installer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'electron-devtools-installer/dist/downloadChromeExtension' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-devtools-installer/dist/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-devtools-installer/dist/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-devtools-installer/src/downloadChromeExtension' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-devtools-installer/src/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron-devtools-installer/src/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'electron-devtools-installer/dist/downloadChromeExtension.js' {
|
||||
declare module.exports: $Exports<'electron-devtools-installer/dist/downloadChromeExtension'>;
|
||||
}
|
||||
declare module 'electron-devtools-installer/dist/index.js' {
|
||||
declare module.exports: $Exports<'electron-devtools-installer/dist/index'>;
|
||||
}
|
||||
declare module 'electron-devtools-installer/dist/utils.js' {
|
||||
declare module.exports: $Exports<'electron-devtools-installer/dist/utils'>;
|
||||
}
|
||||
declare module 'electron-devtools-installer/src/downloadChromeExtension.js' {
|
||||
declare module.exports: $Exports<'electron-devtools-installer/src/downloadChromeExtension'>;
|
||||
}
|
||||
declare module 'electron-devtools-installer/src/index.js' {
|
||||
declare module.exports: $Exports<'electron-devtools-installer/src/index'>;
|
||||
}
|
||||
declare module 'electron-devtools-installer/src/utils.js' {
|
||||
declare module.exports: $Exports<'electron-devtools-installer/src/utils'>;
|
||||
}
|
||||
59
flow-typed/npm/electron_vx.x.x.js
vendored
Normal file
59
flow-typed/npm/electron_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
// flow-typed signature: 451c88326bb7cc6aa79491d34e1c60b0
|
||||
// flow-typed version: <<STUB>>/electron_v1.7.3/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'electron'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'electron' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'electron/cli' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron/install' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron/test/errors' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'electron/test/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'electron/cli.js' {
|
||||
declare module.exports: $Exports<'electron/cli'>;
|
||||
}
|
||||
declare module 'electron/index' {
|
||||
declare module.exports: $Exports<'electron'>;
|
||||
}
|
||||
declare module 'electron/index.js' {
|
||||
declare module.exports: $Exports<'electron'>;
|
||||
}
|
||||
declare module 'electron/install.js' {
|
||||
declare module.exports: $Exports<'electron/install'>;
|
||||
}
|
||||
declare module 'electron/test/errors.js' {
|
||||
declare module.exports: $Exports<'electron/test/errors'>;
|
||||
}
|
||||
declare module 'electron/test/index.js' {
|
||||
declare module.exports: $Exports<'electron/test/index'>;
|
||||
}
|
||||
33
flow-typed/npm/eslint-config-react-app_vx.x.x.js
vendored
Normal file
33
flow-typed/npm/eslint-config-react-app_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
// flow-typed signature: 44d1e6a2fb005812ddc1cec21c490caf
|
||||
// flow-typed version: <<STUB>>/eslint-config-react-app_v^0.6.2/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-config-react-app'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-config-react-app' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-config-react-app/index' {
|
||||
declare module.exports: $Exports<'eslint-config-react-app'>;
|
||||
}
|
||||
declare module 'eslint-config-react-app/index.js' {
|
||||
declare module.exports: $Exports<'eslint-config-react-app'>;
|
||||
}
|
||||
340
flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js
vendored
Normal file
340
flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,340 @@
|
||||
// flow-typed signature: 01f86fa0dc19e1126195f0bded4a75de
|
||||
// flow-typed version: <<STUB>>/eslint-plugin-flowtype_v^2.30.4/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-plugin-flowtype'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-plugin-flowtype' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'eslint-plugin-flowtype/bin/readmeAssertions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/booleanStyle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/defineFlowType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/delimiterDangle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/genericSpacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noDupeKeys' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noMutableArray' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noPrimitiveConstructorTypes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noTypesMissingFileAnnotation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noUnusedExpressions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noWeakTypes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireParameterType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireReturnType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireValidFileAnnotation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireVariableType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/semi' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/sortKeys' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceAfterTypeColon' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeGenericBracket' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeIndexer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeProperty' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateReturnType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypeCastExpression' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypical' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/reporter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeIdMatch' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/unionIntersectionSpacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/useFlowType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/validSyntax' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/checkFlowFileAnnotation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/fuzzyStringMatch' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getParameterName' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getTokenAfterParens' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFile' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFileAnnotation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/iterateFunctionNodes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/quoteName' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/spacingFixers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-plugin-flowtype/bin/readmeAssertions.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/bin/readmeAssertions'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/index'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/booleanStyle.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/booleanStyle'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/defineFlowType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/defineFlowType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/delimiterDangle.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/delimiterDangle'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/genericSpacing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/genericSpacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noDupeKeys.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noDupeKeys'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noMutableArray.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noMutableArray'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noPrimitiveConstructorTypes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noPrimitiveConstructorTypes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noTypesMissingFileAnnotation.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noTypesMissingFileAnnotation'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noUnusedExpressions.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noUnusedExpressions'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noWeakTypes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noWeakTypes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireParameterType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireParameterType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireReturnType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireReturnType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireValidFileAnnotation.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireValidFileAnnotation'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireVariableType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireVariableType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/semi.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/semi'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/sortKeys.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/sortKeys'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceAfterTypeColon.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spaceAfterTypeColon'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeGenericBracket.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spaceBeforeGenericBracket'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeIndexer.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeIndexer'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeProperty.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeProperty'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateReturnType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateReturnType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypeCastExpression.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypeCastExpression'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypical.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypical'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/index'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/reporter.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/reporter'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeIdMatch.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeIdMatch'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/unionIntersectionSpacing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/unionIntersectionSpacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/useFlowType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/useFlowType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/validSyntax.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/validSyntax'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/checkFlowFileAnnotation.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/checkFlowFileAnnotation'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/fuzzyStringMatch.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/fuzzyStringMatch'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getParameterName.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/getParameterName'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getTokenAfterParens.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/getTokenAfterParens'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/index'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFile.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/isFlowFile'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFileAnnotation.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/isFlowFileAnnotation'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/iterateFunctionNodes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/iterateFunctionNodes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/quoteName.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/quoteName'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/spacingFixers.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/spacingFixers'>;
|
||||
}
|
||||
340
flow-typed/npm/eslint-plugin-import_vx.x.x.js
vendored
Normal file
340
flow-typed/npm/eslint-plugin-import_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,340 @@
|
||||
// flow-typed signature: e6182e793944459234f882bb47d2ba01
|
||||
// flow-typed version: <<STUB>>/eslint-plugin-import_v^2.2.0/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-plugin-import'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-plugin-import' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'eslint-plugin-import/config/electron' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/errors' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/react-native' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/react' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/recommended' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/stage-0' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/warnings' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/core/importType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/core/staticRequire' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/ExportMap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/importDeclaration' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/default' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/export' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/exports-last' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/extensions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/first' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/imports-first' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/max-dependencies' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/named' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/namespace' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/newline-after-import' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-absolute-path' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-amd' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-anonymous-default-export' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-commonjs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-deprecated' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-duplicates' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-dynamic-require' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-extraneous-dependencies' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-internal-modules' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-mutable-exports' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-as-default-member' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-as-default' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-default' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-namespace' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-nodejs-modules' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-restricted-paths' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-unassigned-import' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-unresolved' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-webpack-loader-syntax' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/order' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/prefer-default-export' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/unambiguous' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/memo-parser/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-plugin-import/config/electron.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/electron'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/errors.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/errors'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/react-native.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/react-native'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/react.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/react'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/recommended.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/recommended'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/stage-0.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/stage-0'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/warnings.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/warnings'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/core/importType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/core/importType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/core/staticRequire.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/core/staticRequire'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/ExportMap.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/ExportMap'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/importDeclaration.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/importDeclaration'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/index'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/default.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/default'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/export.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/export'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/exports-last.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/exports-last'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/extensions.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/extensions'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/first.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/first'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/imports-first.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/imports-first'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/max-dependencies.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/max-dependencies'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/named.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/named'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/namespace.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/namespace'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/newline-after-import.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/newline-after-import'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-absolute-path.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-absolute-path'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-amd.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-amd'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-anonymous-default-export.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-anonymous-default-export'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-commonjs.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-commonjs'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-deprecated.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-deprecated'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-duplicates.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-duplicates'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-dynamic-require.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-dynamic-require'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-extraneous-dependencies.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-extraneous-dependencies'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-internal-modules.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-internal-modules'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-mutable-exports.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-mutable-exports'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-as-default-member.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-as-default-member'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-as-default.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-as-default'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-default.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-default'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-namespace.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-namespace'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-nodejs-modules.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-nodejs-modules'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-restricted-paths.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-restricted-paths'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-unassigned-import.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-unassigned-import'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-unresolved.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-unresolved'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-webpack-loader-syntax.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-webpack-loader-syntax'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/order.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/order'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/prefer-default-export.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/prefer-default-export'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/unambiguous.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/unambiguous'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/memo-parser/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/memo-parser/index'>;
|
||||
}
|
||||
67
flow-typed/npm/eslint-plugin-jest_vx.x.x.js
vendored
Normal file
67
flow-typed/npm/eslint-plugin-jest_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
// flow-typed signature: 8a40d0f5dc4e849acdc08684ab7c532f
|
||||
// flow-typed version: <<STUB>>/eslint-plugin-jest_v^20.0.1/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-plugin-jest'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-plugin-jest' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'eslint-plugin-jest/build/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/build/rules/no-disabled-tests' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/build/rules/no-focused-tests' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/build/rules/no-identical-title' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/build/rules/types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/build/rules/valid-expect' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-plugin-jest/build/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/build/index'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/build/rules/no-disabled-tests.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/build/rules/no-disabled-tests'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/build/rules/no-focused-tests.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/build/rules/no-focused-tests'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/build/rules/no-identical-title.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/build/rules/no-identical-title'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/build/rules/types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/build/rules/types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/build/rules/valid-expect.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/build/rules/valid-expect'>;
|
||||
}
|
||||
1411
flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js
vendored
Normal file
1411
flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
32
flow-typed/npm/eslint-plugin-prettier_vx.x.x.js
vendored
Normal file
32
flow-typed/npm/eslint-plugin-prettier_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// flow-typed signature: 409c518b379d758c595068e9eefec26b
|
||||
// flow-typed version: <<STUB>>/eslint-plugin-prettier_v^2.3.1/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-plugin-prettier'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-plugin-prettier' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'eslint-plugin-prettier/eslint-plugin-prettier' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-plugin-prettier/eslint-plugin-prettier.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-prettier/eslint-plugin-prettier'>;
|
||||
}
|
||||
45
flow-typed/npm/eslint-plugin-prettify_vx.x.x.js
vendored
Normal file
45
flow-typed/npm/eslint-plugin-prettify_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
// flow-typed signature: bcecc715564737f1856994b80c3fff42
|
||||
// flow-typed version: <<STUB>>/eslint-plugin-prettify_v^1.0.0/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-plugin-prettify'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-plugin-prettify' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'eslint-plugin-prettify/no-styles' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-prettify/rule' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-plugin-prettify/index' {
|
||||
declare module.exports: $Exports<'eslint-plugin-prettify'>;
|
||||
}
|
||||
declare module 'eslint-plugin-prettify/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-prettify'>;
|
||||
}
|
||||
declare module 'eslint-plugin-prettify/no-styles.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-prettify/no-styles'>;
|
||||
}
|
||||
declare module 'eslint-plugin-prettify/rule.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-prettify/rule'>;
|
||||
}
|
||||
500
flow-typed/npm/eslint-plugin-react_vx.x.x.js
vendored
Normal file
500
flow-typed/npm/eslint-plugin-react_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,500 @@
|
||||
// flow-typed signature: db9fe4d9399695da59af119fe46c104a
|
||||
// flow-typed version: <<STUB>>/eslint-plugin-react_v^6.10.3/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-plugin-react'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-plugin-react' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'eslint-plugin-react/lib/rules/display-name' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-component-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-elements' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-foreign-prop-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-prop-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-boolean-value' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-closing-bracket-location' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-curly-spacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-equals-spacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-filename-extension' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-first-prop-new-line' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-handler-names' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-indent-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-indent' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-key' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-max-props-per-line' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-bind' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-comment-textnodes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-duplicate-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-literals' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-target-blank' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-undef' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-pascal-case' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-sort-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-space-before-closing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-tag-spacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-uses-react' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-uses-vars' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-wrap-multilines' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-array-index-key' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-children-prop' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-comment-textnodes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-danger-with-children' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-danger' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-deprecated' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-did-mount-set-state' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-did-update-set-state' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-direct-mutation-state' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-find-dom-node' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-is-mounted' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-multi-comp' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-render-return-value' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-set-state' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-string-refs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unescaped-entities' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unknown-property' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unused-prop-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/prefer-es6-class' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/prefer-stateless-function' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/prop-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/react-in-jsx-scope' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/require-default-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/require-extension' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/require-optimization' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/require-render-return' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/self-closing-comp' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/sort-comp' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/sort-prop-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/style-prop-object' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/void-dom-elements-no-children' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/wrap-multilines' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/annotations' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/Components' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/pragma' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/variable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/version' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-plugin-react/index' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/display-name.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/display-name'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-component-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-component-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-elements.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-elements'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-foreign-prop-types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-foreign-prop-types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-prop-types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-prop-types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-boolean-value.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-boolean-value'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-closing-bracket-location.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-closing-bracket-location'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-curly-spacing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-curly-spacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-equals-spacing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-equals-spacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-filename-extension.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-filename-extension'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-first-prop-new-line.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-first-prop-new-line'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-handler-names.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-handler-names'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-indent-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-indent-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-indent.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-indent'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-key.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-key'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-max-props-per-line.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-max-props-per-line'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-bind.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-bind'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-comment-textnodes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-comment-textnodes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-duplicate-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-duplicate-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-literals.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-literals'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-target-blank.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-target-blank'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-undef.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-undef'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-pascal-case.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-pascal-case'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-sort-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-sort-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-space-before-closing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-space-before-closing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-tag-spacing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-tag-spacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-uses-react.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-uses-react'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-uses-vars.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-uses-vars'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-wrap-multilines.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-wrap-multilines'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-array-index-key.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-array-index-key'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-children-prop.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-children-prop'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-comment-textnodes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-comment-textnodes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-danger-with-children.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-danger-with-children'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-danger.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-danger'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-deprecated.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-deprecated'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-did-mount-set-state.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-did-mount-set-state'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-did-update-set-state.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-did-update-set-state'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-direct-mutation-state.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-direct-mutation-state'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-find-dom-node.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-find-dom-node'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-is-mounted.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-is-mounted'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-multi-comp.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-multi-comp'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-render-return-value.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-render-return-value'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-set-state.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-set-state'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-string-refs.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-string-refs'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unescaped-entities.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unescaped-entities'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unknown-property.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unknown-property'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unused-prop-types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unused-prop-types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/prefer-es6-class.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prefer-es6-class'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/prefer-stateless-function.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prefer-stateless-function'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/prop-types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prop-types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/react-in-jsx-scope.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/react-in-jsx-scope'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/require-default-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/require-default-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/require-extension.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/require-extension'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/require-optimization.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/require-optimization'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/require-render-return.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/require-render-return'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/self-closing-comp.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/self-closing-comp'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/sort-comp.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/sort-comp'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/sort-prop-types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/sort-prop-types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/style-prop-object.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/style-prop-object'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/void-dom-elements-no-children.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/void-dom-elements-no-children'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/wrap-multilines.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/wrap-multilines'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/annotations.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/annotations'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/Components.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/Components'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/pragma.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/pragma'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/variable.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/variable'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/version.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/version'>;
|
||||
}
|
||||
2293
flow-typed/npm/eslint_vx.x.x.js
vendored
Normal file
2293
flow-typed/npm/eslint_vx.x.x.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
207
flow-typed/npm/express_v4.x.x.js
vendored
Normal file
207
flow-typed/npm/express_v4.x.x.js
vendored
Normal file
@@ -0,0 +1,207 @@
|
||||
// flow-typed signature: f0e399a136d6e8dc8b1fbdc078e2850c
|
||||
// flow-typed version: ed397013d1/express_v4.x.x/flow_>=v0.32.x
|
||||
|
||||
import type { Server } from 'http';
|
||||
import type { Socket } from 'net';
|
||||
|
||||
declare type express$RouterOptions = {
|
||||
caseSensitive?: boolean,
|
||||
mergeParams?: boolean,
|
||||
strict?: boolean
|
||||
};
|
||||
|
||||
declare class express$RequestResponseBase {
|
||||
app: express$Application;
|
||||
get(field: string): string | void;
|
||||
}
|
||||
|
||||
declare type express$RequestParams = {
|
||||
[param: string]: string
|
||||
}
|
||||
|
||||
declare class express$Request extends http$IncomingMessage mixins express$RequestResponseBase {
|
||||
baseUrl: string;
|
||||
body: any;
|
||||
cookies: {[cookie: string]: string};
|
||||
connection: Socket;
|
||||
fresh: boolean;
|
||||
hostname: string;
|
||||
ip: string;
|
||||
ips: Array<string>;
|
||||
method: string;
|
||||
originalUrl: string;
|
||||
params: express$RequestParams;
|
||||
path: string;
|
||||
protocol: 'https' | 'http';
|
||||
query: {[name: string]: string | Array<string>};
|
||||
route: string;
|
||||
secure: boolean;
|
||||
signedCookies: {[signedCookie: string]: string};
|
||||
stale: boolean;
|
||||
subdomains: Array<string>;
|
||||
xhr: boolean;
|
||||
accepts(types: string): string | false;
|
||||
accepts(types: Array<string>): string | false;
|
||||
acceptsCharsets(...charsets: Array<string>): string | false;
|
||||
acceptsEncodings(...encoding: Array<string>): string | false;
|
||||
acceptsLanguages(...lang: Array<string>): string | false;
|
||||
header(field: string): string | void;
|
||||
is(type: string): boolean;
|
||||
param(name: string, defaultValue?: string): string | void;
|
||||
}
|
||||
|
||||
declare type express$CookieOptions = {
|
||||
domain?: string,
|
||||
encode?: (value: string) => string,
|
||||
expires?: Date,
|
||||
httpOnly?: boolean,
|
||||
maxAge?: number,
|
||||
path?: string,
|
||||
secure?: boolean,
|
||||
signed?: boolean
|
||||
};
|
||||
|
||||
declare type express$Path = string | RegExp;
|
||||
|
||||
declare type express$RenderCallback = (err: Error | null, html?: string) => mixed;
|
||||
|
||||
declare type express$SendFileOptions = {
|
||||
maxAge?: number,
|
||||
root?: string,
|
||||
lastModified?: boolean,
|
||||
headers?: {[name: string]: string},
|
||||
dotfiles?: 'allow' | 'deny' | 'ignore'
|
||||
};
|
||||
|
||||
declare class express$Response extends http$ServerResponse mixins express$RequestResponseBase {
|
||||
headersSent: boolean;
|
||||
locals: {[name: string]: mixed};
|
||||
append(field: string, value?: string): this;
|
||||
attachment(filename?: string): this;
|
||||
cookie(name: string, value: string, options?: express$CookieOptions): this;
|
||||
clearCookie(name: string, options?: express$CookieOptions): this;
|
||||
download(path: string, filename?: string, callback?: (err?: ?Error) => void): this;
|
||||
format(typesObject: {[type: string]: Function}): this;
|
||||
json(body?: mixed): this;
|
||||
jsonp(body?: mixed): this;
|
||||
links(links: {[name: string]: string}): this;
|
||||
location(path: string): this;
|
||||
redirect(url: string, ...args: Array<void>): this;
|
||||
redirect(status: number, url: string, ...args: Array<void>): this;
|
||||
render(view: string, locals?: {[name: string]: mixed}, callback?: express$RenderCallback): this;
|
||||
send(body?: mixed): this;
|
||||
sendFile(path: string, options?: express$SendFileOptions, callback?: (err?: ?Error) => mixed): this;
|
||||
sendStatus(statusCode: number): this;
|
||||
header(field: string, value?: string): this;
|
||||
header(headers: {[name: string]: string}): this;
|
||||
set(field: string, value?: string|string[]): this;
|
||||
set(headers: {[name: string]: string}): this;
|
||||
status(statusCode: number): this;
|
||||
type(type: string): this;
|
||||
vary(field: string): this;
|
||||
req: express$Request;
|
||||
}
|
||||
|
||||
declare type express$NextFunction = (err?: ?Error | 'route') => mixed;
|
||||
declare type express$Middleware =
|
||||
((req: $Subtype<express$Request>, res: express$Response, next: express$NextFunction) => mixed) |
|
||||
((error: Error, req: $Subtype<express$Request>, res: express$Response, next: express$NextFunction) => mixed);
|
||||
declare interface express$RouteMethodType<T> {
|
||||
(middleware: express$Middleware): T;
|
||||
(...middleware: Array<express$Middleware>): T;
|
||||
(path: express$Path|express$Path[], ...middleware: Array<express$Middleware>): T;
|
||||
}
|
||||
declare class express$Route {
|
||||
all: express$RouteMethodType<this>;
|
||||
get: express$RouteMethodType<this>;
|
||||
post: express$RouteMethodType<this>;
|
||||
put: express$RouteMethodType<this>;
|
||||
head: express$RouteMethodType<this>;
|
||||
delete: express$RouteMethodType<this>;
|
||||
options: express$RouteMethodType<this>;
|
||||
trace: express$RouteMethodType<this>;
|
||||
copy: express$RouteMethodType<this>;
|
||||
lock: express$RouteMethodType<this>;
|
||||
mkcol: express$RouteMethodType<this>;
|
||||
move: express$RouteMethodType<this>;
|
||||
purge: express$RouteMethodType<this>;
|
||||
propfind: express$RouteMethodType<this>;
|
||||
proppatch: express$RouteMethodType<this>;
|
||||
unlock: express$RouteMethodType<this>;
|
||||
report: express$RouteMethodType<this>;
|
||||
mkactivity: express$RouteMethodType<this>;
|
||||
checkout: express$RouteMethodType<this>;
|
||||
merge: express$RouteMethodType<this>;
|
||||
|
||||
// @TODO Missing 'm-search' but get flow illegal name error.
|
||||
|
||||
notify: express$RouteMethodType<this>;
|
||||
subscribe: express$RouteMethodType<this>;
|
||||
unsubscribe: express$RouteMethodType<this>;
|
||||
patch: express$RouteMethodType<this>;
|
||||
search: express$RouteMethodType<this>;
|
||||
connect: express$RouteMethodType<this>;
|
||||
}
|
||||
|
||||
declare class express$Router extends express$Route {
|
||||
constructor(options?: express$RouterOptions): void;
|
||||
route(path: string): express$Route;
|
||||
static (options?: express$RouterOptions): express$Router;
|
||||
use(middleware: express$Middleware): this;
|
||||
use(...middleware: Array<express$Middleware>): this;
|
||||
use(path: express$Path|express$Path[], ...middleware: Array<express$Middleware>): this;
|
||||
use(path: string, router: express$Router): this;
|
||||
handle(req: http$IncomingMessage, res: http$ServerResponse, next: express$NextFunction): void;
|
||||
param(
|
||||
param: string,
|
||||
callback: (
|
||||
req: $Subtype<express$Request>,
|
||||
res: express$Response,
|
||||
next: express$NextFunction,
|
||||
id: string
|
||||
) => mixed
|
||||
): void;
|
||||
|
||||
// Can't use regular callable signature syntax due to https://github.com/facebook/flow/issues/3084
|
||||
$call: (req: http$IncomingMessage, res: http$ServerResponse, next?: ?express$NextFunction) => void;
|
||||
}
|
||||
|
||||
declare class express$Application extends express$Router mixins events$EventEmitter {
|
||||
constructor(): void;
|
||||
locals: {[name: string]: mixed};
|
||||
mountpath: string;
|
||||
listen(port: number, hostname?: string, backlog?: number, callback?: (err?: ?Error) => mixed): Server;
|
||||
listen(port: number, hostname?: string, callback?: (err?: ?Error) => mixed): Server;
|
||||
listen(port: number, callback?: (err?: ?Error) => mixed): Server;
|
||||
listen(path: string, callback?: (err?: ?Error) => mixed): Server;
|
||||
listen(handle: Object, callback?: (err?: ?Error) => mixed): Server;
|
||||
disable(name: string): void;
|
||||
disabled(name: string): boolean;
|
||||
enable(name: string): express$Application;
|
||||
enabled(name: string): boolean;
|
||||
engine(name: string, callback: Function): void;
|
||||
/**
|
||||
* Mixed will not be taken as a value option. Issue around using the GET http method name and the get for settings.
|
||||
*/
|
||||
// get(name: string): mixed;
|
||||
set(name: string, value: mixed): mixed;
|
||||
render(name: string, optionsOrFunction: {[name: string]: mixed}, callback: express$RenderCallback): void;
|
||||
handle(req: http$IncomingMessage, res: http$ServerResponse, next?: ?express$NextFunction): void;
|
||||
}
|
||||
|
||||
declare module 'express' {
|
||||
declare export type RouterOptions = express$RouterOptions;
|
||||
declare export type CookieOptions = express$CookieOptions;
|
||||
declare export type Middleware = express$Middleware;
|
||||
declare export type NextFunction = express$NextFunction;
|
||||
declare export type RequestParams = express$RequestParams;
|
||||
declare export type $Response = express$Response;
|
||||
declare export type $Request = express$Request;
|
||||
declare export type $Application = express$Application;
|
||||
|
||||
declare module.exports: {
|
||||
(): express$Application, // If you try to call like a function, it will use this signature
|
||||
static: (root: string, options?: Object) => express$Middleware, // `static` property on the function
|
||||
Router: typeof express$Router, // `Router` property on the function
|
||||
};
|
||||
}
|
||||
6
flow-typed/npm/flow-bin_v0.x.x.js
vendored
Normal file
6
flow-typed/npm/flow-bin_v0.x.x.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
// flow-typed signature: 6a5610678d4b01e13bbfbbc62bdaf583
|
||||
// flow-typed version: 3817bc6980/flow-bin_v0.x.x/flow_>=v0.25.x
|
||||
|
||||
declare module "flow-bin" {
|
||||
declare module.exports: string;
|
||||
}
|
||||
235
flow-typed/npm/fs-extra_vx.x.x.js
vendored
Normal file
235
flow-typed/npm/fs-extra_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,235 @@
|
||||
// flow-typed signature: 334664ea61c80495e1e70186a29a5fa7
|
||||
// flow-typed version: <<STUB>>/fs-extra_v5.x.x/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'fs-extra'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'fs-extra' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'fs-extra/lib/copy-sync/copy-sync' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/copy-sync/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/copy/copy' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/copy/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/empty/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure/file' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure/link' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure/symlink-paths' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure/symlink-type' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure/symlink' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/fs/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/json/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/json/jsonfile' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/json/output-json-sync' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/json/output-json' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/mkdirs/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/mkdirs/mkdirs-sync' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/mkdirs/mkdirs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/mkdirs/win32' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/move-sync/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/move/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/output/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/path-exists/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/remove/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/remove/rimraf' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/util/assign' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/util/buffer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/util/utimes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'fs-extra/lib/copy-sync/copy-sync.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/copy-sync/copy-sync'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/copy-sync/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/copy-sync/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/copy/copy.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/copy/copy'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/copy/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/copy/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/empty/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/empty/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/file.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure/file'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/link.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure/link'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/symlink-paths.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure/symlink-paths'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/symlink-type.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure/symlink-type'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/symlink.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure/symlink'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/fs/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/fs/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/json/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/json/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/json/jsonfile.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/json/jsonfile'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/json/output-json-sync.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/json/output-json-sync'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/json/output-json.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/json/output-json'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/mkdirs/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/mkdirs/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/mkdirs/mkdirs-sync.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/mkdirs/mkdirs-sync'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/mkdirs/mkdirs.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/mkdirs/mkdirs'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/mkdirs/win32.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/mkdirs/win32'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/move-sync/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/move-sync/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/move/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/move/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/output/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/output/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/path-exists/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/path-exists/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/remove/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/remove/index'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/remove/rimraf.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/remove/rimraf'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/util/assign.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/util/assign'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/util/buffer.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/util/buffer'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/util/utimes.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/util/utimes'>;
|
||||
}
|
||||
277
flow-typed/npm/graphiql_vx.x.x.js
vendored
Normal file
277
flow-typed/npm/graphiql_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,277 @@
|
||||
// flow-typed signature: 69ddad32e70eb9e1eb79e7ce2017117b
|
||||
// flow-typed version: <<STUB>>/graphiql_v0.11.10/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'graphiql'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'graphiql' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'graphiql/dist/components/DocExplorer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/DocExplorer/Argument' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/DocExplorer/DefaultValue' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/DocExplorer/FieldDoc' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/DocExplorer/MarkdownContent' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/DocExplorer/SchemaDoc' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/DocExplorer/SearchBox' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/DocExplorer/SearchResults' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/DocExplorer/TypeDoc' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/DocExplorer/TypeLink' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/ExecuteButton' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/GraphiQL' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/HistoryQuery' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/QueryEditor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/QueryHistory' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/ResultViewer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/ToolbarButton' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/ToolbarGroup' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/ToolbarMenu' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/ToolbarSelect' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/components/VariableEditor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/CodeMirrorSizer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/debounce' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/elementPosition' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/fillLeafs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/find' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/getQueryFacts' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/getSelectedOperationName' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/introspectionQueries' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/normalizeWhitespace' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/onHasCompletion' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/QueryStore' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/dist/utility/StorageAPI' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/graphiql' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphiql/graphiql.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'graphiql/dist/components/DocExplorer.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/DocExplorer'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/DocExplorer/Argument.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/DocExplorer/Argument'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/DocExplorer/DefaultValue.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/DocExplorer/DefaultValue'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/DocExplorer/FieldDoc.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/DocExplorer/FieldDoc'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/DocExplorer/MarkdownContent.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/DocExplorer/MarkdownContent'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/DocExplorer/SchemaDoc.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/DocExplorer/SchemaDoc'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/DocExplorer/SearchBox.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/DocExplorer/SearchBox'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/DocExplorer/SearchResults.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/DocExplorer/SearchResults'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/DocExplorer/TypeDoc.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/DocExplorer/TypeDoc'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/DocExplorer/TypeLink.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/DocExplorer/TypeLink'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/ExecuteButton.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/ExecuteButton'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/GraphiQL.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/GraphiQL'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/HistoryQuery.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/HistoryQuery'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/QueryEditor.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/QueryEditor'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/QueryHistory.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/QueryHistory'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/ResultViewer.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/ResultViewer'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/ToolbarButton.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/ToolbarButton'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/ToolbarGroup.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/ToolbarGroup'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/ToolbarMenu.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/ToolbarMenu'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/ToolbarSelect.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/ToolbarSelect'>;
|
||||
}
|
||||
declare module 'graphiql/dist/components/VariableEditor.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/components/VariableEditor'>;
|
||||
}
|
||||
declare module 'graphiql/dist/index.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/index'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/CodeMirrorSizer.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/CodeMirrorSizer'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/debounce.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/debounce'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/elementPosition.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/elementPosition'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/fillLeafs.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/fillLeafs'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/find.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/find'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/getQueryFacts.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/getQueryFacts'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/getSelectedOperationName.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/getSelectedOperationName'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/introspectionQueries.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/introspectionQueries'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/normalizeWhitespace.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/normalizeWhitespace'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/onHasCompletion.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/onHasCompletion'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/QueryStore.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/QueryStore'>;
|
||||
}
|
||||
declare module 'graphiql/dist/utility/StorageAPI.js' {
|
||||
declare module.exports: $Exports<'graphiql/dist/utility/StorageAPI'>;
|
||||
}
|
||||
declare module 'graphiql/graphiql.js' {
|
||||
declare module.exports: $Exports<'graphiql/graphiql'>;
|
||||
}
|
||||
declare module 'graphiql/graphiql.min.js' {
|
||||
declare module.exports: $Exports<'graphiql/graphiql.min'>;
|
||||
}
|
||||
633
flow-typed/npm/graphql_vx.x.x.js
vendored
Normal file
633
flow-typed/npm/graphql_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,633 @@
|
||||
// flow-typed signature: 78a3b0630930ae254dcef08544af115d
|
||||
// flow-typed version: <<STUB>>/graphql_v^0.11.7/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'graphql'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'graphql' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'graphql/error/formatError' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/error/GraphQLError' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/error/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/error/locatedError' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/error/syntaxError' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/execution/execute' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/execution/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/execution/values' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/graphql' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/jsutils/dedent' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/jsutils/find' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/jsutils/invariant' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/jsutils/isInvalid' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/jsutils/isNullish' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/jsutils/keyMap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/jsutils/keyValMap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/jsutils/ObjMap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/jsutils/quotedOrList' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/jsutils/suggestionList' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/language/ast' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/language/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/language/kinds' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/language/lexer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/language/location' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/language/parser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/language/printer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/language/source' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/language/visitor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/subscription/asyncIteratorReject' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/subscription/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/subscription/mapAsyncIterator' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/subscription/subscribe' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/type/definition' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/type/directives' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/type/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/type/introspection' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/type/scalars' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/type/schema' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/assertValidName' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/astFromValue' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/buildASTSchema' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/buildClientSchema' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/concatAST' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/extendSchema' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/findBreakingChanges' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/findDeprecatedUsages' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/getOperationAST' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/introspectionQuery' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/isValidJSValue' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/isValidLiteralValue' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/schemaPrinter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/separateOperations' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/typeComparators' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/typeFromAST' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/TypeInfo' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/utilities/valueFromAST' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/ArgumentsOfCorrectType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/DefaultValuesOfCorrectType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/FieldsOnCorrectType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/FragmentsOnCompositeTypes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/KnownArgumentNames' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/KnownDirectives' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/KnownFragmentNames' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/KnownTypeNames' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/LoneAnonymousOperation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/NoFragmentCycles' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/NoUndefinedVariables' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/NoUnusedFragments' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/NoUnusedVariables' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/OverlappingFieldsCanBeMerged' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/PossibleFragmentSpreads' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/ProvidedNonNullArguments' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/ScalarLeafs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/SingleFieldSubscriptions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/UniqueArgumentNames' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/UniqueDirectivesPerLocation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/UniqueFragmentNames' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/UniqueInputFieldNames' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/UniqueOperationNames' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/UniqueVariableNames' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/VariablesAreInputTypes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/rules/VariablesInAllowedPosition' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/specifiedRules' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'graphql/validation/validate' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'graphql/error/formatError.js' {
|
||||
declare module.exports: $Exports<'graphql/error/formatError'>;
|
||||
}
|
||||
declare module 'graphql/error/GraphQLError.js' {
|
||||
declare module.exports: $Exports<'graphql/error/GraphQLError'>;
|
||||
}
|
||||
declare module 'graphql/error/index.js' {
|
||||
declare module.exports: $Exports<'graphql/error/index'>;
|
||||
}
|
||||
declare module 'graphql/error/locatedError.js' {
|
||||
declare module.exports: $Exports<'graphql/error/locatedError'>;
|
||||
}
|
||||
declare module 'graphql/error/syntaxError.js' {
|
||||
declare module.exports: $Exports<'graphql/error/syntaxError'>;
|
||||
}
|
||||
declare module 'graphql/execution/execute.js' {
|
||||
declare module.exports: $Exports<'graphql/execution/execute'>;
|
||||
}
|
||||
declare module 'graphql/execution/index.js' {
|
||||
declare module.exports: $Exports<'graphql/execution/index'>;
|
||||
}
|
||||
declare module 'graphql/execution/values.js' {
|
||||
declare module.exports: $Exports<'graphql/execution/values'>;
|
||||
}
|
||||
declare module 'graphql/graphql.js' {
|
||||
declare module.exports: $Exports<'graphql/graphql'>;
|
||||
}
|
||||
declare module 'graphql/index' {
|
||||
declare module.exports: $Exports<'graphql'>;
|
||||
}
|
||||
declare module 'graphql/index.js' {
|
||||
declare module.exports: $Exports<'graphql'>;
|
||||
}
|
||||
declare module 'graphql/jsutils/dedent.js' {
|
||||
declare module.exports: $Exports<'graphql/jsutils/dedent'>;
|
||||
}
|
||||
declare module 'graphql/jsutils/find.js' {
|
||||
declare module.exports: $Exports<'graphql/jsutils/find'>;
|
||||
}
|
||||
declare module 'graphql/jsutils/invariant.js' {
|
||||
declare module.exports: $Exports<'graphql/jsutils/invariant'>;
|
||||
}
|
||||
declare module 'graphql/jsutils/isInvalid.js' {
|
||||
declare module.exports: $Exports<'graphql/jsutils/isInvalid'>;
|
||||
}
|
||||
declare module 'graphql/jsutils/isNullish.js' {
|
||||
declare module.exports: $Exports<'graphql/jsutils/isNullish'>;
|
||||
}
|
||||
declare module 'graphql/jsutils/keyMap.js' {
|
||||
declare module.exports: $Exports<'graphql/jsutils/keyMap'>;
|
||||
}
|
||||
declare module 'graphql/jsutils/keyValMap.js' {
|
||||
declare module.exports: $Exports<'graphql/jsutils/keyValMap'>;
|
||||
}
|
||||
declare module 'graphql/jsutils/ObjMap.js' {
|
||||
declare module.exports: $Exports<'graphql/jsutils/ObjMap'>;
|
||||
}
|
||||
declare module 'graphql/jsutils/quotedOrList.js' {
|
||||
declare module.exports: $Exports<'graphql/jsutils/quotedOrList'>;
|
||||
}
|
||||
declare module 'graphql/jsutils/suggestionList.js' {
|
||||
declare module.exports: $Exports<'graphql/jsutils/suggestionList'>;
|
||||
}
|
||||
declare module 'graphql/language/ast.js' {
|
||||
declare module.exports: $Exports<'graphql/language/ast'>;
|
||||
}
|
||||
declare module 'graphql/language/index.js' {
|
||||
declare module.exports: $Exports<'graphql/language/index'>;
|
||||
}
|
||||
declare module 'graphql/language/kinds.js' {
|
||||
declare module.exports: $Exports<'graphql/language/kinds'>;
|
||||
}
|
||||
declare module 'graphql/language/lexer.js' {
|
||||
declare module.exports: $Exports<'graphql/language/lexer'>;
|
||||
}
|
||||
declare module 'graphql/language/location.js' {
|
||||
declare module.exports: $Exports<'graphql/language/location'>;
|
||||
}
|
||||
declare module 'graphql/language/parser.js' {
|
||||
declare module.exports: $Exports<'graphql/language/parser'>;
|
||||
}
|
||||
declare module 'graphql/language/printer.js' {
|
||||
declare module.exports: $Exports<'graphql/language/printer'>;
|
||||
}
|
||||
declare module 'graphql/language/source.js' {
|
||||
declare module.exports: $Exports<'graphql/language/source'>;
|
||||
}
|
||||
declare module 'graphql/language/visitor.js' {
|
||||
declare module.exports: $Exports<'graphql/language/visitor'>;
|
||||
}
|
||||
declare module 'graphql/subscription/asyncIteratorReject.js' {
|
||||
declare module.exports: $Exports<'graphql/subscription/asyncIteratorReject'>;
|
||||
}
|
||||
declare module 'graphql/subscription/index.js' {
|
||||
declare module.exports: $Exports<'graphql/subscription/index'>;
|
||||
}
|
||||
declare module 'graphql/subscription/mapAsyncIterator.js' {
|
||||
declare module.exports: $Exports<'graphql/subscription/mapAsyncIterator'>;
|
||||
}
|
||||
declare module 'graphql/subscription/subscribe.js' {
|
||||
declare module.exports: $Exports<'graphql/subscription/subscribe'>;
|
||||
}
|
||||
declare module 'graphql/type/definition.js' {
|
||||
declare module.exports: $Exports<'graphql/type/definition'>;
|
||||
}
|
||||
declare module 'graphql/type/directives.js' {
|
||||
declare module.exports: $Exports<'graphql/type/directives'>;
|
||||
}
|
||||
declare module 'graphql/type/index.js' {
|
||||
declare module.exports: $Exports<'graphql/type/index'>;
|
||||
}
|
||||
declare module 'graphql/type/introspection.js' {
|
||||
declare module.exports: $Exports<'graphql/type/introspection'>;
|
||||
}
|
||||
declare module 'graphql/type/scalars.js' {
|
||||
declare module.exports: $Exports<'graphql/type/scalars'>;
|
||||
}
|
||||
declare module 'graphql/type/schema.js' {
|
||||
declare module.exports: $Exports<'graphql/type/schema'>;
|
||||
}
|
||||
declare module 'graphql/utilities/assertValidName.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/assertValidName'>;
|
||||
}
|
||||
declare module 'graphql/utilities/astFromValue.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/astFromValue'>;
|
||||
}
|
||||
declare module 'graphql/utilities/buildASTSchema.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/buildASTSchema'>;
|
||||
}
|
||||
declare module 'graphql/utilities/buildClientSchema.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/buildClientSchema'>;
|
||||
}
|
||||
declare module 'graphql/utilities/concatAST.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/concatAST'>;
|
||||
}
|
||||
declare module 'graphql/utilities/extendSchema.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/extendSchema'>;
|
||||
}
|
||||
declare module 'graphql/utilities/findBreakingChanges.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/findBreakingChanges'>;
|
||||
}
|
||||
declare module 'graphql/utilities/findDeprecatedUsages.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/findDeprecatedUsages'>;
|
||||
}
|
||||
declare module 'graphql/utilities/getOperationAST.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/getOperationAST'>;
|
||||
}
|
||||
declare module 'graphql/utilities/index.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/index'>;
|
||||
}
|
||||
declare module 'graphql/utilities/introspectionQuery.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/introspectionQuery'>;
|
||||
}
|
||||
declare module 'graphql/utilities/isValidJSValue.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/isValidJSValue'>;
|
||||
}
|
||||
declare module 'graphql/utilities/isValidLiteralValue.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/isValidLiteralValue'>;
|
||||
}
|
||||
declare module 'graphql/utilities/schemaPrinter.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/schemaPrinter'>;
|
||||
}
|
||||
declare module 'graphql/utilities/separateOperations.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/separateOperations'>;
|
||||
}
|
||||
declare module 'graphql/utilities/typeComparators.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/typeComparators'>;
|
||||
}
|
||||
declare module 'graphql/utilities/typeFromAST.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/typeFromAST'>;
|
||||
}
|
||||
declare module 'graphql/utilities/TypeInfo.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/TypeInfo'>;
|
||||
}
|
||||
declare module 'graphql/utilities/valueFromAST.js' {
|
||||
declare module.exports: $Exports<'graphql/utilities/valueFromAST'>;
|
||||
}
|
||||
declare module 'graphql/validation/index.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/index'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/ArgumentsOfCorrectType.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/ArgumentsOfCorrectType'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/DefaultValuesOfCorrectType.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/DefaultValuesOfCorrectType'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/FieldsOnCorrectType.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/FieldsOnCorrectType'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/FragmentsOnCompositeTypes.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/FragmentsOnCompositeTypes'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/KnownArgumentNames.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/KnownArgumentNames'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/KnownDirectives.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/KnownDirectives'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/KnownFragmentNames.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/KnownFragmentNames'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/KnownTypeNames.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/KnownTypeNames'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/LoneAnonymousOperation.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/LoneAnonymousOperation'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/NoFragmentCycles.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/NoFragmentCycles'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/NoUndefinedVariables.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/NoUndefinedVariables'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/NoUnusedFragments.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/NoUnusedFragments'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/NoUnusedVariables.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/NoUnusedVariables'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/OverlappingFieldsCanBeMerged.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/OverlappingFieldsCanBeMerged'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/PossibleFragmentSpreads.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/PossibleFragmentSpreads'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/ProvidedNonNullArguments.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/ProvidedNonNullArguments'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/ScalarLeafs.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/ScalarLeafs'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/SingleFieldSubscriptions.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/SingleFieldSubscriptions'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/UniqueArgumentNames.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/UniqueArgumentNames'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/UniqueDirectivesPerLocation.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/UniqueDirectivesPerLocation'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/UniqueFragmentNames.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/UniqueFragmentNames'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/UniqueInputFieldNames.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/UniqueInputFieldNames'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/UniqueOperationNames.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/UniqueOperationNames'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/UniqueVariableNames.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/UniqueVariableNames'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/VariablesAreInputTypes.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/VariablesAreInputTypes'>;
|
||||
}
|
||||
declare module 'graphql/validation/rules/VariablesInAllowedPosition.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/rules/VariablesInAllowedPosition'>;
|
||||
}
|
||||
declare module 'graphql/validation/specifiedRules.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/specifiedRules'>;
|
||||
}
|
||||
declare module 'graphql/validation/validate.js' {
|
||||
declare module.exports: $Exports<'graphql/validation/validate'>;
|
||||
}
|
||||
6
flow-typed/npm/invariant_v2.x.x.js
vendored
Normal file
6
flow-typed/npm/invariant_v2.x.x.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
// flow-typed signature: 41a21b97ad4a7c01c4caf3a8b9382354
|
||||
// flow-typed version: b43dff3e0e/invariant_v2.x.x/flow_>=v0.33.x
|
||||
|
||||
declare module invariant {
|
||||
declare var exports: (condition: boolean, message: string) => void;
|
||||
}
|
||||
584
flow-typed/npm/jest_v21.x.x.js
vendored
Normal file
584
flow-typed/npm/jest_v21.x.x.js
vendored
Normal file
@@ -0,0 +1,584 @@
|
||||
// flow-typed signature: 107cf7068b8835594e97f938e8848244
|
||||
// flow-typed version: 8b4dd96654/jest_v21.x.x/flow_>=v0.39.x
|
||||
|
||||
type JestMockFn<TArguments: $ReadOnlyArray<*>, TReturn> = {
|
||||
(...args: TArguments): TReturn,
|
||||
/**
|
||||
* An object for introspecting mock calls
|
||||
*/
|
||||
mock: {
|
||||
/**
|
||||
* An array that represents all calls that have been made into this mock
|
||||
* function. Each call is represented by an array of arguments that were
|
||||
* passed during the call.
|
||||
*/
|
||||
calls: Array<TArguments>,
|
||||
/**
|
||||
* An array that contains all the object instances that have been
|
||||
* instantiated from this mock function.
|
||||
*/
|
||||
instances: Array<TReturn>
|
||||
},
|
||||
/**
|
||||
* Resets all information stored in the mockFn.mock.calls and
|
||||
* mockFn.mock.instances arrays. Often this is useful when you want to clean
|
||||
* up a mock's usage data between two assertions.
|
||||
*/
|
||||
mockClear(): void,
|
||||
/**
|
||||
* Resets all information stored in the mock. This is useful when you want to
|
||||
* completely restore a mock back to its initial state.
|
||||
*/
|
||||
mockReset(): void,
|
||||
/**
|
||||
* Removes the mock and restores the initial implementation. This is useful
|
||||
* when you want to mock functions in certain test cases and restore the
|
||||
* original implementation in others. Beware that mockFn.mockRestore only
|
||||
* works when mock was created with jest.spyOn. Thus you have to take care of
|
||||
* restoration yourself when manually assigning jest.fn().
|
||||
*/
|
||||
mockRestore(): void,
|
||||
/**
|
||||
* Accepts a function that should be used as the implementation of the mock.
|
||||
* The mock itself will still record all calls that go into and instances
|
||||
* that come from itself -- the only difference is that the implementation
|
||||
* will also be executed when the mock is called.
|
||||
*/
|
||||
mockImplementation(
|
||||
fn: (...args: TArguments) => TReturn
|
||||
): JestMockFn<TArguments, TReturn>,
|
||||
/**
|
||||
* Accepts a function that will be used as an implementation of the mock for
|
||||
* one call to the mocked function. Can be chained so that multiple function
|
||||
* calls produce different results.
|
||||
*/
|
||||
mockImplementationOnce(
|
||||
fn: (...args: TArguments) => TReturn
|
||||
): JestMockFn<TArguments, TReturn>,
|
||||
/**
|
||||
* Just a simple sugar function for returning `this`
|
||||
*/
|
||||
mockReturnThis(): void,
|
||||
/**
|
||||
* Deprecated: use jest.fn(() => value) instead
|
||||
*/
|
||||
mockReturnValue(value: TReturn): JestMockFn<TArguments, TReturn>,
|
||||
/**
|
||||
* Sugar for only returning a value once inside your mock
|
||||
*/
|
||||
mockReturnValueOnce(value: TReturn): JestMockFn<TArguments, TReturn>
|
||||
};
|
||||
|
||||
type JestAsymmetricEqualityType = {
|
||||
/**
|
||||
* A custom Jasmine equality tester
|
||||
*/
|
||||
asymmetricMatch(value: mixed): boolean
|
||||
};
|
||||
|
||||
type JestCallsType = {
|
||||
allArgs(): mixed,
|
||||
all(): mixed,
|
||||
any(): boolean,
|
||||
count(): number,
|
||||
first(): mixed,
|
||||
mostRecent(): mixed,
|
||||
reset(): void
|
||||
};
|
||||
|
||||
type JestClockType = {
|
||||
install(): void,
|
||||
mockDate(date: Date): void,
|
||||
tick(milliseconds?: number): void,
|
||||
uninstall(): void
|
||||
};
|
||||
|
||||
type JestMatcherResult = {
|
||||
message?: string | (() => string),
|
||||
pass: boolean
|
||||
};
|
||||
|
||||
type JestMatcher = (actual: any, expected: any) => JestMatcherResult;
|
||||
|
||||
type JestPromiseType = {
|
||||
/**
|
||||
* Use rejects to unwrap the reason of a rejected promise so any other
|
||||
* matcher can be chained. If the promise is fulfilled the assertion fails.
|
||||
*/
|
||||
rejects: JestExpectType,
|
||||
/**
|
||||
* Use resolves to unwrap the value of a fulfilled promise so any other
|
||||
* matcher can be chained. If the promise is rejected the assertion fails.
|
||||
*/
|
||||
resolves: JestExpectType
|
||||
};
|
||||
|
||||
/**
|
||||
* Plugin: jest-enzyme
|
||||
*/
|
||||
type EnzymeMatchersType = {
|
||||
toBeChecked(): void,
|
||||
toBeDisabled(): void,
|
||||
toBeEmpty(): void,
|
||||
toBePresent(): void,
|
||||
toContainReact(element: React$Element<any>): void,
|
||||
toHaveClassName(className: string): void,
|
||||
toHaveHTML(html: string): void,
|
||||
toHaveProp(propKey: string, propValue?: any): void,
|
||||
toHaveRef(refName: string): void,
|
||||
toHaveState(stateKey: string, stateValue?: any): void,
|
||||
toHaveStyle(styleKey: string, styleValue?: any): void,
|
||||
toHaveTagName(tagName: string): void,
|
||||
toHaveText(text: string): void,
|
||||
toIncludeText(text: string): void,
|
||||
toHaveValue(value: any): void,
|
||||
toMatchElement(element: React$Element<any>): void,
|
||||
toMatchSelector(selector: string): void
|
||||
};
|
||||
|
||||
type JestExpectType = {
|
||||
not: JestExpectType & EnzymeMatchersType,
|
||||
/**
|
||||
* If you have a mock function, you can use .lastCalledWith to test what
|
||||
* arguments it was last called with.
|
||||
*/
|
||||
lastCalledWith(...args: Array<any>): void,
|
||||
/**
|
||||
* toBe just checks that a value is what you expect. It uses === to check
|
||||
* strict equality.
|
||||
*/
|
||||
toBe(value: any): void,
|
||||
/**
|
||||
* Use .toHaveBeenCalled to ensure that a mock function got called.
|
||||
*/
|
||||
toBeCalled(): void,
|
||||
/**
|
||||
* Use .toBeCalledWith to ensure that a mock function was called with
|
||||
* specific arguments.
|
||||
*/
|
||||
toBeCalledWith(...args: Array<any>): void,
|
||||
/**
|
||||
* Using exact equality with floating point numbers is a bad idea. Rounding
|
||||
* means that intuitive things fail.
|
||||
*/
|
||||
toBeCloseTo(num: number, delta: any): void,
|
||||
/**
|
||||
* Use .toBeDefined to check that a variable is not undefined.
|
||||
*/
|
||||
toBeDefined(): void,
|
||||
/**
|
||||
* Use .toBeFalsy when you don't care what a value is, you just want to
|
||||
* ensure a value is false in a boolean context.
|
||||
*/
|
||||
toBeFalsy(): void,
|
||||
/**
|
||||
* To compare floating point numbers, you can use toBeGreaterThan.
|
||||
*/
|
||||
toBeGreaterThan(number: number): void,
|
||||
/**
|
||||
* To compare floating point numbers, you can use toBeGreaterThanOrEqual.
|
||||
*/
|
||||
toBeGreaterThanOrEqual(number: number): void,
|
||||
/**
|
||||
* To compare floating point numbers, you can use toBeLessThan.
|
||||
*/
|
||||
toBeLessThan(number: number): void,
|
||||
/**
|
||||
* To compare floating point numbers, you can use toBeLessThanOrEqual.
|
||||
*/
|
||||
toBeLessThanOrEqual(number: number): void,
|
||||
/**
|
||||
* Use .toBeInstanceOf(Class) to check that an object is an instance of a
|
||||
* class.
|
||||
*/
|
||||
toBeInstanceOf(cls: Class<*>): void,
|
||||
/**
|
||||
* .toBeNull() is the same as .toBe(null) but the error messages are a bit
|
||||
* nicer.
|
||||
*/
|
||||
toBeNull(): void,
|
||||
/**
|
||||
* Use .toBeTruthy when you don't care what a value is, you just want to
|
||||
* ensure a value is true in a boolean context.
|
||||
*/
|
||||
toBeTruthy(): void,
|
||||
/**
|
||||
* Use .toBeUndefined to check that a variable is undefined.
|
||||
*/
|
||||
toBeUndefined(): void,
|
||||
/**
|
||||
* Use .toContain when you want to check that an item is in a list. For
|
||||
* testing the items in the list, this uses ===, a strict equality check.
|
||||
*/
|
||||
toContain(item: any): void,
|
||||
/**
|
||||
* Use .toContainEqual when you want to check that an item is in a list. For
|
||||
* testing the items in the list, this matcher recursively checks the
|
||||
* equality of all fields, rather than checking for object identity.
|
||||
*/
|
||||
toContainEqual(item: any): void,
|
||||
/**
|
||||
* Use .toEqual when you want to check that two objects have the same value.
|
||||
* This matcher recursively checks the equality of all fields, rather than
|
||||
* checking for object identity.
|
||||
*/
|
||||
toEqual(value: any): void,
|
||||
/**
|
||||
* Use .toHaveBeenCalled to ensure that a mock function got called.
|
||||
*/
|
||||
toHaveBeenCalled(): void,
|
||||
/**
|
||||
* Use .toHaveBeenCalledTimes to ensure that a mock function got called exact
|
||||
* number of times.
|
||||
*/
|
||||
toHaveBeenCalledTimes(number: number): void,
|
||||
/**
|
||||
* Use .toHaveBeenCalledWith to ensure that a mock function was called with
|
||||
* specific arguments.
|
||||
*/
|
||||
toHaveBeenCalledWith(...args: Array<any>): void,
|
||||
/**
|
||||
* Use .toHaveBeenLastCalledWith to ensure that a mock function was last called
|
||||
* with specific arguments.
|
||||
*/
|
||||
toHaveBeenLastCalledWith(...args: Array<any>): void,
|
||||
/**
|
||||
* Check that an object has a .length property and it is set to a certain
|
||||
* numeric value.
|
||||
*/
|
||||
toHaveLength(number: number): void,
|
||||
/**
|
||||
*
|
||||
*/
|
||||
toHaveProperty(propPath: string, value?: any): void,
|
||||
/**
|
||||
* Use .toMatch to check that a string matches a regular expression or string.
|
||||
*/
|
||||
toMatch(regexpOrString: RegExp | string): void,
|
||||
/**
|
||||
* Use .toMatchObject to check that a javascript object matches a subset of the properties of an object.
|
||||
*/
|
||||
toMatchObject(object: Object | Array<Object>): void,
|
||||
/**
|
||||
* This ensures that a React component matches the most recent snapshot.
|
||||
*/
|
||||
toMatchSnapshot(name?: string): void,
|
||||
/**
|
||||
* Use .toThrow to test that a function throws when it is called.
|
||||
* If you want to test that a specific error gets thrown, you can provide an
|
||||
* argument to toThrow. The argument can be a string for the error message,
|
||||
* a class for the error, or a regex that should match the error.
|
||||
*
|
||||
* Alias: .toThrowError
|
||||
*/
|
||||
toThrow(message?: string | Error | Class<Error> | RegExp): void,
|
||||
toThrowError(message?: string | Error | Class<Error> | RegExp): void,
|
||||
/**
|
||||
* Use .toThrowErrorMatchingSnapshot to test that a function throws a error
|
||||
* matching the most recent snapshot when it is called.
|
||||
*/
|
||||
toThrowErrorMatchingSnapshot(): void
|
||||
};
|
||||
|
||||
type JestObjectType = {
|
||||
/**
|
||||
* Disables automatic mocking in the module loader.
|
||||
*
|
||||
* After this method is called, all `require()`s will return the real
|
||||
* versions of each module (rather than a mocked version).
|
||||
*/
|
||||
disableAutomock(): JestObjectType,
|
||||
/**
|
||||
* An un-hoisted version of disableAutomock
|
||||
*/
|
||||
autoMockOff(): JestObjectType,
|
||||
/**
|
||||
* Enables automatic mocking in the module loader.
|
||||
*/
|
||||
enableAutomock(): JestObjectType,
|
||||
/**
|
||||
* An un-hoisted version of enableAutomock
|
||||
*/
|
||||
autoMockOn(): JestObjectType,
|
||||
/**
|
||||
* Clears the mock.calls and mock.instances properties of all mocks.
|
||||
* Equivalent to calling .mockClear() on every mocked function.
|
||||
*/
|
||||
clearAllMocks(): JestObjectType,
|
||||
/**
|
||||
* Resets the state of all mocks. Equivalent to calling .mockReset() on every
|
||||
* mocked function.
|
||||
*/
|
||||
resetAllMocks(): JestObjectType,
|
||||
/**
|
||||
* Removes any pending timers from the timer system.
|
||||
*/
|
||||
clearAllTimers(): void,
|
||||
/**
|
||||
* The same as `mock` but not moved to the top of the expectation by
|
||||
* babel-jest.
|
||||
*/
|
||||
doMock(moduleName: string, moduleFactory?: any): JestObjectType,
|
||||
/**
|
||||
* The same as `unmock` but not moved to the top of the expectation by
|
||||
* babel-jest.
|
||||
*/
|
||||
dontMock(moduleName: string): JestObjectType,
|
||||
/**
|
||||
* Returns a new, unused mock function. Optionally takes a mock
|
||||
* implementation.
|
||||
*/
|
||||
fn<TArguments: $ReadOnlyArray<*>, TReturn>(
|
||||
implementation?: (...args: TArguments) => TReturn
|
||||
): JestMockFn<TArguments, TReturn>,
|
||||
/**
|
||||
* Determines if the given function is a mocked function.
|
||||
*/
|
||||
isMockFunction(fn: Function): boolean,
|
||||
/**
|
||||
* Given the name of a module, use the automatic mocking system to generate a
|
||||
* mocked version of the module for you.
|
||||
*/
|
||||
genMockFromModule(moduleName: string): any,
|
||||
/**
|
||||
* Mocks a module with an auto-mocked version when it is being required.
|
||||
*
|
||||
* The second argument can be used to specify an explicit module factory that
|
||||
* is being run instead of using Jest's automocking feature.
|
||||
*
|
||||
* The third argument can be used to create virtual mocks -- mocks of modules
|
||||
* that don't exist anywhere in the system.
|
||||
*/
|
||||
mock(
|
||||
moduleName: string,
|
||||
moduleFactory?: any,
|
||||
options?: Object
|
||||
): JestObjectType,
|
||||
/**
|
||||
* Returns the actual module instead of a mock, bypassing all checks on
|
||||
* whether the module should receive a mock implementation or not.
|
||||
*/
|
||||
requireActual(moduleName: string): any,
|
||||
/**
|
||||
* Returns a mock module instead of the actual module, bypassing all checks
|
||||
* on whether the module should be required normally or not.
|
||||
*/
|
||||
requireMock(moduleName: string): any,
|
||||
/**
|
||||
* Resets the module registry - the cache of all required modules. This is
|
||||
* useful to isolate modules where local state might conflict between tests.
|
||||
*/
|
||||
resetModules(): JestObjectType,
|
||||
/**
|
||||
* Exhausts the micro-task queue (usually interfaced in node via
|
||||
* process.nextTick).
|
||||
*/
|
||||
runAllTicks(): void,
|
||||
/**
|
||||
* Exhausts the macro-task queue (i.e., all tasks queued by setTimeout(),
|
||||
* setInterval(), and setImmediate()).
|
||||
*/
|
||||
runAllTimers(): void,
|
||||
/**
|
||||
* Exhausts all tasks queued by setImmediate().
|
||||
*/
|
||||
runAllImmediates(): void,
|
||||
/**
|
||||
* Executes only the macro task queue (i.e. all tasks queued by setTimeout()
|
||||
* or setInterval() and setImmediate()).
|
||||
*/
|
||||
runTimersToTime(msToRun: number): void,
|
||||
/**
|
||||
* Executes only the macro-tasks that are currently pending (i.e., only the
|
||||
* tasks that have been queued by setTimeout() or setInterval() up to this
|
||||
* point)
|
||||
*/
|
||||
runOnlyPendingTimers(): void,
|
||||
/**
|
||||
* Explicitly supplies the mock object that the module system should return
|
||||
* for the specified module. Note: It is recommended to use jest.mock()
|
||||
* instead.
|
||||
*/
|
||||
setMock(moduleName: string, moduleExports: any): JestObjectType,
|
||||
/**
|
||||
* Indicates that the module system should never return a mocked version of
|
||||
* the specified module from require() (e.g. that it should always return the
|
||||
* real module).
|
||||
*/
|
||||
unmock(moduleName: string): JestObjectType,
|
||||
/**
|
||||
* Instructs Jest to use fake versions of the standard timer functions
|
||||
* (setTimeout, setInterval, clearTimeout, clearInterval, nextTick,
|
||||
* setImmediate and clearImmediate).
|
||||
*/
|
||||
useFakeTimers(): JestObjectType,
|
||||
/**
|
||||
* Instructs Jest to use the real versions of the standard timer functions.
|
||||
*/
|
||||
useRealTimers(): JestObjectType,
|
||||
/**
|
||||
* Creates a mock function similar to jest.fn but also tracks calls to
|
||||
* object[methodName].
|
||||
*/
|
||||
spyOn(object: Object, methodName: string): JestMockFn<any, any>,
|
||||
/**
|
||||
* Set the default timeout interval for tests and before/after hooks in milliseconds.
|
||||
* Note: The default timeout interval is 5 seconds if this method is not called.
|
||||
*/
|
||||
setTimeout(timeout: number): JestObjectType
|
||||
};
|
||||
|
||||
type JestSpyType = {
|
||||
calls: JestCallsType
|
||||
};
|
||||
|
||||
/** Runs this function after every test inside this context */
|
||||
declare function afterEach(
|
||||
fn: (done: () => void) => ?Promise<mixed>,
|
||||
timeout?: number
|
||||
): void;
|
||||
/** Runs this function before every test inside this context */
|
||||
declare function beforeEach(
|
||||
fn: (done: () => void) => ?Promise<mixed>,
|
||||
timeout?: number
|
||||
): void;
|
||||
/** Runs this function after all tests have finished inside this context */
|
||||
declare function afterAll(
|
||||
fn: (done: () => void) => ?Promise<mixed>,
|
||||
timeout?: number
|
||||
): void;
|
||||
/** Runs this function before any tests have started inside this context */
|
||||
declare function beforeAll(
|
||||
fn: (done: () => void) => ?Promise<mixed>,
|
||||
timeout?: number
|
||||
): void;
|
||||
|
||||
/** A context for grouping tests together */
|
||||
declare var describe: {
|
||||
/**
|
||||
* Creates a block that groups together several related tests in one "test suite"
|
||||
*/
|
||||
(name: string, fn: () => void): void,
|
||||
|
||||
/**
|
||||
* Only run this describe block
|
||||
*/
|
||||
only(name: string, fn: () => void): void,
|
||||
|
||||
/**
|
||||
* Skip running this describe block
|
||||
*/
|
||||
skip(name: string, fn: () => void): void
|
||||
};
|
||||
|
||||
/** An individual test unit */
|
||||
declare var it: {
|
||||
/**
|
||||
* An individual test unit
|
||||
*
|
||||
* @param {string} Name of Test
|
||||
* @param {Function} Test
|
||||
* @param {number} Timeout for the test, in milliseconds.
|
||||
*/
|
||||
(
|
||||
name: string,
|
||||
fn?: (done: () => void) => ?Promise<mixed>,
|
||||
timeout?: number
|
||||
): void,
|
||||
/**
|
||||
* Only run this test
|
||||
*
|
||||
* @param {string} Name of Test
|
||||
* @param {Function} Test
|
||||
* @param {number} Timeout for the test, in milliseconds.
|
||||
*/
|
||||
only(
|
||||
name: string,
|
||||
fn?: (done: () => void) => ?Promise<mixed>,
|
||||
timeout?: number
|
||||
): void,
|
||||
/**
|
||||
* Skip running this test
|
||||
*
|
||||
* @param {string} Name of Test
|
||||
* @param {Function} Test
|
||||
* @param {number} Timeout for the test, in milliseconds.
|
||||
*/
|
||||
skip(
|
||||
name: string,
|
||||
fn?: (done: () => void) => ?Promise<mixed>,
|
||||
timeout?: number
|
||||
): void,
|
||||
/**
|
||||
* Run the test concurrently
|
||||
*
|
||||
* @param {string} Name of Test
|
||||
* @param {Function} Test
|
||||
* @param {number} Timeout for the test, in milliseconds.
|
||||
*/
|
||||
concurrent(
|
||||
name: string,
|
||||
fn?: (done: () => void) => ?Promise<mixed>,
|
||||
timeout?: number
|
||||
): void
|
||||
};
|
||||
declare function fit(
|
||||
name: string,
|
||||
fn: (done: () => void) => ?Promise<mixed>,
|
||||
timeout?: number
|
||||
): void;
|
||||
/** An individual test unit */
|
||||
declare var test: typeof it;
|
||||
/** A disabled group of tests */
|
||||
declare var xdescribe: typeof describe;
|
||||
/** A focused group of tests */
|
||||
declare var fdescribe: typeof describe;
|
||||
/** A disabled individual test */
|
||||
declare var xit: typeof it;
|
||||
/** A disabled individual test */
|
||||
declare var xtest: typeof it;
|
||||
|
||||
/** The expect function is used every time you want to test a value */
|
||||
declare var expect: {
|
||||
/** The object that you want to make assertions against */
|
||||
(value: any): JestExpectType & JestPromiseType & EnzymeMatchersType,
|
||||
/** Add additional Jasmine matchers to Jest's roster */
|
||||
extend(matchers: { [name: string]: JestMatcher }): void,
|
||||
/** Add a module that formats application-specific data structures. */
|
||||
addSnapshotSerializer(serializer: (input: Object) => string): void,
|
||||
assertions(expectedAssertions: number): void,
|
||||
hasAssertions(): void,
|
||||
any(value: mixed): JestAsymmetricEqualityType,
|
||||
anything(): void,
|
||||
arrayContaining(value: Array<mixed>): void,
|
||||
objectContaining(value: Object): void,
|
||||
/** Matches any received string that contains the exact expected string. */
|
||||
stringContaining(value: string): void,
|
||||
stringMatching(value: string | RegExp): void
|
||||
};
|
||||
|
||||
// TODO handle return type
|
||||
// http://jasmine.github.io/2.4/introduction.html#section-Spies
|
||||
declare function spyOn(value: mixed, method: string): Object;
|
||||
|
||||
/** Holds all functions related to manipulating test runner */
|
||||
declare var jest: JestObjectType;
|
||||
|
||||
/**
|
||||
* The global Jasmine object, this is generally not exposed as the public API,
|
||||
* using features inside here could break in later versions of Jest.
|
||||
*/
|
||||
declare var jasmine: {
|
||||
DEFAULT_TIMEOUT_INTERVAL: number,
|
||||
any(value: mixed): JestAsymmetricEqualityType,
|
||||
anything(): void,
|
||||
arrayContaining(value: Array<mixed>): void,
|
||||
clock(): JestClockType,
|
||||
createSpy(name: string): JestSpyType,
|
||||
createSpyObj(
|
||||
baseName: string,
|
||||
methodNames: Array<string>
|
||||
): { [methodName: string]: JestSpyType },
|
||||
objectContaining(value: Object): void,
|
||||
stringMatching(value: string): void
|
||||
};
|
||||
4207
flow-typed/npm/lodash_v4.x.x.js
vendored
Normal file
4207
flow-typed/npm/lodash_v4.x.x.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
46
flow-typed/npm/openssl-wrapper_vx.x.x.js
vendored
Normal file
46
flow-typed/npm/openssl-wrapper_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
// flow-typed signature: de535bf82f2186287df01b1d05ef7355
|
||||
// flow-typed version: <<STUB>>/openssl-wrapper_v0.3.4/flow_v0.69.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'openssl-wrapper'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'openssl-wrapper' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'openssl-wrapper/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'openssl-wrapper/src/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'openssl-wrapper/test/index.spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'openssl-wrapper/lib/index.js' {
|
||||
declare module.exports: $Exports<'openssl-wrapper/lib/index'>;
|
||||
}
|
||||
declare module 'openssl-wrapper/src/index.js' {
|
||||
declare module.exports: $Exports<'openssl-wrapper/src/index'>;
|
||||
}
|
||||
declare module 'openssl-wrapper/test/index.spec.js' {
|
||||
declare module.exports: $Exports<'openssl-wrapper/test/index.spec'>;
|
||||
}
|
||||
585
flow-typed/npm/polished_vx.x.x.js
vendored
Normal file
585
flow-typed/npm/polished_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,585 @@
|
||||
// flow-typed signature: 41ed726d42e8bdc8e940fef3395a9649
|
||||
// flow-typed version: <<STUB>>/polished_v^1.1.1/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'polished'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'polished' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'polished/dist/polished.es' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/dist/polished' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/dist/polished.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/docs/assets/anchor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/docs/assets/docs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/docs/assets/highlight.pack' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/docs/assets/polished' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/docs/assets/script' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/adjustHue' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/complement' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/darken' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/desaturate' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/grayscale' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/hsl' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/hsla' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/invert' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/lighten' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/mix' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/opacify' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/parseToHsl' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/parseToRgb' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/readableColor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/rgb' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/rgba' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/saturate' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/setHue' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/setLightness' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/setSaturation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/shade' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/tint' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/toColorString' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/color/transparentize' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/helpers/directionalProperty' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/helpers/em' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/helpers/modularScale' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/helpers/rem' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/helpers/stripUnit' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_capitalizeString' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_curry' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_endsWith' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_guard' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_hslToHex' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_hslToRgb' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_isValidDimensionValue' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_nameToHex' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_numberToHex' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_polishedLogs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_pxto' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_reduceHexValue' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_rgbToHsl' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/internalHelpers/_statefulSelectors' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/clearFix' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/ellipsis' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/fontFace' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/hideText' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/hiDPI' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/normalize' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/placeholder' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/radialGradient' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/retinaImage' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/selection' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/timingFunctions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/triangle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/mixins/wordWrap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/animation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/backgroundImages' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/backgrounds' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/borderColor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/borderRadius' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/borderStyle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/borderWidth' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/buttons' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/margin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/padding' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/position' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/size' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/textInputs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/shorthands/transitions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'polished/lib/types/color' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'polished/dist/polished.es.js' {
|
||||
declare module.exports: $Exports<'polished/dist/polished.es'>;
|
||||
}
|
||||
declare module 'polished/dist/polished.js' {
|
||||
declare module.exports: $Exports<'polished/dist/polished'>;
|
||||
}
|
||||
declare module 'polished/dist/polished.min.js' {
|
||||
declare module.exports: $Exports<'polished/dist/polished.min'>;
|
||||
}
|
||||
declare module 'polished/docs/assets/anchor.js' {
|
||||
declare module.exports: $Exports<'polished/docs/assets/anchor'>;
|
||||
}
|
||||
declare module 'polished/docs/assets/docs.js' {
|
||||
declare module.exports: $Exports<'polished/docs/assets/docs'>;
|
||||
}
|
||||
declare module 'polished/docs/assets/highlight.pack.js' {
|
||||
declare module.exports: $Exports<'polished/docs/assets/highlight.pack'>;
|
||||
}
|
||||
declare module 'polished/docs/assets/polished.js' {
|
||||
declare module.exports: $Exports<'polished/docs/assets/polished'>;
|
||||
}
|
||||
declare module 'polished/docs/assets/script.js' {
|
||||
declare module.exports: $Exports<'polished/docs/assets/script'>;
|
||||
}
|
||||
declare module 'polished/lib/color/adjustHue.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/adjustHue'>;
|
||||
}
|
||||
declare module 'polished/lib/color/complement.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/complement'>;
|
||||
}
|
||||
declare module 'polished/lib/color/darken.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/darken'>;
|
||||
}
|
||||
declare module 'polished/lib/color/desaturate.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/desaturate'>;
|
||||
}
|
||||
declare module 'polished/lib/color/grayscale.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/grayscale'>;
|
||||
}
|
||||
declare module 'polished/lib/color/hsl.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/hsl'>;
|
||||
}
|
||||
declare module 'polished/lib/color/hsla.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/hsla'>;
|
||||
}
|
||||
declare module 'polished/lib/color/invert.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/invert'>;
|
||||
}
|
||||
declare module 'polished/lib/color/lighten.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/lighten'>;
|
||||
}
|
||||
declare module 'polished/lib/color/mix.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/mix'>;
|
||||
}
|
||||
declare module 'polished/lib/color/opacify.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/opacify'>;
|
||||
}
|
||||
declare module 'polished/lib/color/parseToHsl.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/parseToHsl'>;
|
||||
}
|
||||
declare module 'polished/lib/color/parseToRgb.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/parseToRgb'>;
|
||||
}
|
||||
declare module 'polished/lib/color/readableColor.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/readableColor'>;
|
||||
}
|
||||
declare module 'polished/lib/color/rgb.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/rgb'>;
|
||||
}
|
||||
declare module 'polished/lib/color/rgba.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/rgba'>;
|
||||
}
|
||||
declare module 'polished/lib/color/saturate.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/saturate'>;
|
||||
}
|
||||
declare module 'polished/lib/color/setHue.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/setHue'>;
|
||||
}
|
||||
declare module 'polished/lib/color/setLightness.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/setLightness'>;
|
||||
}
|
||||
declare module 'polished/lib/color/setSaturation.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/setSaturation'>;
|
||||
}
|
||||
declare module 'polished/lib/color/shade.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/shade'>;
|
||||
}
|
||||
declare module 'polished/lib/color/tint.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/tint'>;
|
||||
}
|
||||
declare module 'polished/lib/color/toColorString.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/toColorString'>;
|
||||
}
|
||||
declare module 'polished/lib/color/transparentize.js' {
|
||||
declare module.exports: $Exports<'polished/lib/color/transparentize'>;
|
||||
}
|
||||
declare module 'polished/lib/helpers/directionalProperty.js' {
|
||||
declare module.exports: $Exports<'polished/lib/helpers/directionalProperty'>;
|
||||
}
|
||||
declare module 'polished/lib/helpers/em.js' {
|
||||
declare module.exports: $Exports<'polished/lib/helpers/em'>;
|
||||
}
|
||||
declare module 'polished/lib/helpers/modularScale.js' {
|
||||
declare module.exports: $Exports<'polished/lib/helpers/modularScale'>;
|
||||
}
|
||||
declare module 'polished/lib/helpers/rem.js' {
|
||||
declare module.exports: $Exports<'polished/lib/helpers/rem'>;
|
||||
}
|
||||
declare module 'polished/lib/helpers/stripUnit.js' {
|
||||
declare module.exports: $Exports<'polished/lib/helpers/stripUnit'>;
|
||||
}
|
||||
declare module 'polished/lib/index.js' {
|
||||
declare module.exports: $Exports<'polished/lib/index'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_capitalizeString.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_capitalizeString'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_curry.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_curry'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_endsWith.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_endsWith'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_guard.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_guard'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_hslToHex.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_hslToHex'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_hslToRgb.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_hslToRgb'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_isValidDimensionValue.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_isValidDimensionValue'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_nameToHex.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_nameToHex'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_numberToHex.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_numberToHex'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_polishedLogs.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_polishedLogs'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_pxto.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_pxto'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_reduceHexValue.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_reduceHexValue'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_rgbToHsl.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_rgbToHsl'>;
|
||||
}
|
||||
declare module 'polished/lib/internalHelpers/_statefulSelectors.js' {
|
||||
declare module.exports: $Exports<'polished/lib/internalHelpers/_statefulSelectors'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/clearFix.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/clearFix'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/ellipsis.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/ellipsis'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/fontFace.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/fontFace'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/hideText.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/hideText'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/hiDPI.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/hiDPI'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/normalize.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/normalize'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/placeholder.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/placeholder'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/radialGradient.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/radialGradient'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/retinaImage.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/retinaImage'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/selection.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/selection'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/timingFunctions.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/timingFunctions'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/triangle.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/triangle'>;
|
||||
}
|
||||
declare module 'polished/lib/mixins/wordWrap.js' {
|
||||
declare module.exports: $Exports<'polished/lib/mixins/wordWrap'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/animation.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/animation'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/backgroundImages.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/backgroundImages'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/backgrounds.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/backgrounds'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/borderColor.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/borderColor'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/borderRadius.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/borderRadius'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/borderStyle.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/borderStyle'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/borderWidth.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/borderWidth'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/buttons.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/buttons'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/margin.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/margin'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/padding.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/padding'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/position.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/position'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/size.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/size'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/textInputs.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/textInputs'>;
|
||||
}
|
||||
declare module 'polished/lib/shorthands/transitions.js' {
|
||||
declare module.exports: $Exports<'polished/lib/shorthands/transitions'>;
|
||||
}
|
||||
declare module 'polished/lib/types/color.js' {
|
||||
declare module.exports: $Exports<'polished/lib/types/color'>;
|
||||
}
|
||||
87
flow-typed/npm/prettier_vx.x.x.js
vendored
Normal file
87
flow-typed/npm/prettier_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
// flow-typed signature: 8bbe6221bd08557b01d489734074fd02
|
||||
// flow-typed version: <<STUB>>/prettier_v1.5.0/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'prettier'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'prettier' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'prettier/bin/prettier' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'prettier/parser-babylon' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'prettier/parser-flow' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'prettier/parser-graphql' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'prettier/parser-json' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'prettier/parser-parse5' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'prettier/parser-postcss' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'prettier/parser-typescript' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'prettier/bin/prettier.js' {
|
||||
declare module.exports: $Exports<'prettier/bin/prettier'>;
|
||||
}
|
||||
declare module 'prettier/index' {
|
||||
declare module.exports: $Exports<'prettier'>;
|
||||
}
|
||||
declare module 'prettier/index.js' {
|
||||
declare module.exports: $Exports<'prettier'>;
|
||||
}
|
||||
declare module 'prettier/parser-babylon.js' {
|
||||
declare module.exports: $Exports<'prettier/parser-babylon'>;
|
||||
}
|
||||
declare module 'prettier/parser-flow.js' {
|
||||
declare module.exports: $Exports<'prettier/parser-flow'>;
|
||||
}
|
||||
declare module 'prettier/parser-graphql.js' {
|
||||
declare module.exports: $Exports<'prettier/parser-graphql'>;
|
||||
}
|
||||
declare module 'prettier/parser-json.js' {
|
||||
declare module.exports: $Exports<'prettier/parser-json'>;
|
||||
}
|
||||
declare module 'prettier/parser-parse5.js' {
|
||||
declare module.exports: $Exports<'prettier/parser-parse5'>;
|
||||
}
|
||||
declare module 'prettier/parser-postcss.js' {
|
||||
declare module.exports: $Exports<'prettier/parser-postcss'>;
|
||||
}
|
||||
declare module 'prettier/parser-typescript.js' {
|
||||
declare module.exports: $Exports<'prettier/parser-typescript'>;
|
||||
}
|
||||
34
flow-typed/npm/prop-types_v15.x.x.js
vendored
Normal file
34
flow-typed/npm/prop-types_v15.x.x.js
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
// flow-typed signature: 3eaa1f24c7397b78a7481992d2cddcb2
|
||||
// flow-typed version: a1a20d4928/prop-types_v15.x.x/flow_>=v0.41.x
|
||||
|
||||
type $npm$propTypes$ReactPropsCheckType = (
|
||||
props: any,
|
||||
propName: string,
|
||||
componentName: string,
|
||||
href?: string) => ?Error;
|
||||
|
||||
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<Function>;
|
||||
declare var number: React$PropType$Primitive<number>;
|
||||
declare var object: React$PropType$Primitive<Object>;
|
||||
declare var string: React$PropType$Primitive<string>;
|
||||
declare var any: React$PropType$Primitive<any>;
|
||||
declare var arrayOf: React$PropType$ArrayOf;
|
||||
declare var element: React$PropType$Primitive<any>; /* TODO */
|
||||
declare var instanceOf: React$PropType$InstanceOf;
|
||||
declare var node: React$PropType$Primitive<any>; /* TODO */
|
||||
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: $Subtype<{[_: $Keys<V>]: $npm$propTypes$ReactPropsCheckType}>,
|
||||
values: V,
|
||||
location: string,
|
||||
componentName: string,
|
||||
getStack: ?(() => ?string)
|
||||
) : void;
|
||||
}
|
||||
704
flow-typed/npm/react-color_vx.x.x.js
vendored
Normal file
704
flow-typed/npm/react-color_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,704 @@
|
||||
// flow-typed signature: d3fd33836d3ae586d973d7728260a311
|
||||
// flow-typed version: <<STUB>>/react-color_v^2.11.7/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'react-color'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'react-color' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'react-color/examples/Button' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/examples/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/examples/Sketch' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/alpha/Alpha' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/alpha/AlphaPointer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/alpha/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/block/Block' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/block/BlockSwatches' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/block/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/chrome/Chrome' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/chrome/ChromeFields' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/chrome/ChromePointer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/chrome/ChromePointerCircle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/chrome/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/circle/Circle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/circle/CircleSwatch' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/circle/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/common/Alpha' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/common/Checkboard' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/common/ColorWrap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/common/EditableInput' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/common/Hue' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/common/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/common/Saturation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/common/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/common/Swatch' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/compact/Compact' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/compact/CompactColor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/compact/CompactFields' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/compact/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/github/Github' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/github/GithubSwatch' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/github/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/hue/Hue' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/hue/HuePointer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/hue/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/material/Material' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/material/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/photoshop/Photoshop' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/photoshop/PhotoshopButton' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/photoshop/PhotoshopFields' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/photoshop/PhotoshopPointer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/photoshop/PhotoshopPointerCircle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/photoshop/PhotoshopPreviews' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/photoshop/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/sketch/Sketch' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/sketch/SketchFields' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/sketch/SketchPresetColors' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/sketch/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/slider/Slider' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/slider/SliderPointer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/slider/SliderSwatch' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/slider/SliderSwatches' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/slider/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/swatches/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/swatches/Swatches' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/swatches/SwatchesColor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/swatches/SwatchesGroup' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/twitter/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/components/twitter/Twitter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/helpers/alpha' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/helpers/checkboard' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/helpers/color' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/helpers/hue' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/helpers/interaction' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/helpers/saturation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/helpers/spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/lib/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/highlight' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/highlight.js/highlight' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/highlight.js/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/highlight.js/languages/javascript' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-basic-layout/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-basic-layout/lib/components/Container' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-basic-layout/lib/components/Grid' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-docs/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-docs/lib/components/Code' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-docs/lib/components/Docs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-docs/lib/components/Markdown' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-docs/lib/components/MarkdownTitle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-docs/lib/components/Sidebar' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-docs/lib/components/SidebarItem' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-docs/lib/helpers/markdown' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-material-design/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-material-design/lib/components/Link' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-material-design/lib/components/Raised' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-material-design/lib/components/Tab' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-material-design/lib/components/Tabs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-material-design/lib/components/Tile' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-move/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/react-move/lib/components/Move' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/remarkable/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/tinycolor2/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/modules/webpack-react-static/index' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/scripts/docs-dist' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/scripts/docs-server' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-color/webpack.config' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'react-color/examples/Button.js' {
|
||||
declare module.exports: $Exports<'react-color/examples/Button'>;
|
||||
}
|
||||
declare module 'react-color/examples/index.js' {
|
||||
declare module.exports: $Exports<'react-color/examples/index'>;
|
||||
}
|
||||
declare module 'react-color/examples/Sketch.js' {
|
||||
declare module.exports: $Exports<'react-color/examples/Sketch'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/alpha/Alpha.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/alpha/Alpha'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/alpha/AlphaPointer.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/alpha/AlphaPointer'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/alpha/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/alpha/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/block/Block.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/block/Block'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/block/BlockSwatches.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/block/BlockSwatches'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/block/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/block/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/chrome/Chrome.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/chrome/Chrome'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/chrome/ChromeFields.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/chrome/ChromeFields'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/chrome/ChromePointer.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/chrome/ChromePointer'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/chrome/ChromePointerCircle.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/chrome/ChromePointerCircle'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/chrome/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/chrome/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/circle/Circle.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/circle/Circle'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/circle/CircleSwatch.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/circle/CircleSwatch'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/circle/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/circle/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/common/Alpha.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/common/Alpha'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/common/Checkboard.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/common/Checkboard'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/common/ColorWrap.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/common/ColorWrap'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/common/EditableInput.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/common/EditableInput'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/common/Hue.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/common/Hue'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/common/index.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/common/index'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/common/Saturation.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/common/Saturation'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/common/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/common/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/common/Swatch.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/common/Swatch'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/compact/Compact.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/compact/Compact'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/compact/CompactColor.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/compact/CompactColor'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/compact/CompactFields.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/compact/CompactFields'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/compact/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/compact/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/github/Github.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/github/Github'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/github/GithubSwatch.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/github/GithubSwatch'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/github/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/github/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/hue/Hue.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/hue/Hue'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/hue/HuePointer.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/hue/HuePointer'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/hue/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/hue/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/material/Material.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/material/Material'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/material/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/material/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/photoshop/Photoshop.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/photoshop/Photoshop'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/photoshop/PhotoshopButton.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/photoshop/PhotoshopButton'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/photoshop/PhotoshopFields.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/photoshop/PhotoshopFields'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/photoshop/PhotoshopPointer.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/photoshop/PhotoshopPointer'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/photoshop/PhotoshopPointerCircle.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/photoshop/PhotoshopPointerCircle'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/photoshop/PhotoshopPreviews.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/photoshop/PhotoshopPreviews'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/photoshop/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/photoshop/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/sketch/Sketch.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/sketch/Sketch'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/sketch/SketchFields.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/sketch/SketchFields'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/sketch/SketchPresetColors.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/sketch/SketchPresetColors'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/sketch/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/sketch/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/slider/Slider.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/slider/Slider'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/slider/SliderPointer.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/slider/SliderPointer'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/slider/SliderSwatch.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/slider/SliderSwatch'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/slider/SliderSwatches.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/slider/SliderSwatches'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/slider/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/slider/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/swatches/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/swatches/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/swatches/Swatches.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/swatches/Swatches'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/swatches/SwatchesColor.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/swatches/SwatchesColor'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/swatches/SwatchesGroup.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/swatches/SwatchesGroup'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/twitter/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/twitter/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/components/twitter/Twitter.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/components/twitter/Twitter'>;
|
||||
}
|
||||
declare module 'react-color/lib/helpers/alpha.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/helpers/alpha'>;
|
||||
}
|
||||
declare module 'react-color/lib/helpers/checkboard.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/helpers/checkboard'>;
|
||||
}
|
||||
declare module 'react-color/lib/helpers/color.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/helpers/color'>;
|
||||
}
|
||||
declare module 'react-color/lib/helpers/hue.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/helpers/hue'>;
|
||||
}
|
||||
declare module 'react-color/lib/helpers/interaction.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/helpers/interaction'>;
|
||||
}
|
||||
declare module 'react-color/lib/helpers/saturation.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/helpers/saturation'>;
|
||||
}
|
||||
declare module 'react-color/lib/helpers/spec.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/helpers/spec'>;
|
||||
}
|
||||
declare module 'react-color/lib/index.js' {
|
||||
declare module.exports: $Exports<'react-color/lib/index'>;
|
||||
}
|
||||
declare module 'react-color/modules/highlight.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/highlight'>;
|
||||
}
|
||||
declare module 'react-color/modules/highlight.js/highlight.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/highlight.js/highlight'>;
|
||||
}
|
||||
declare module 'react-color/modules/highlight.js/index.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/highlight.js/index'>;
|
||||
}
|
||||
declare module 'react-color/modules/highlight.js/languages/javascript.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/highlight.js/languages/javascript'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-basic-layout/index.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-basic-layout/index'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-basic-layout/lib/components/Container.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-basic-layout/lib/components/Container'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-basic-layout/lib/components/Grid.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-basic-layout/lib/components/Grid'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-docs/index.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-docs/index'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-docs/lib/components/Code.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-docs/lib/components/Code'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-docs/lib/components/Docs.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-docs/lib/components/Docs'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-docs/lib/components/Markdown.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-docs/lib/components/Markdown'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-docs/lib/components/MarkdownTitle.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-docs/lib/components/MarkdownTitle'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-docs/lib/components/Sidebar.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-docs/lib/components/Sidebar'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-docs/lib/components/SidebarItem.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-docs/lib/components/SidebarItem'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-docs/lib/helpers/markdown.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-docs/lib/helpers/markdown'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-material-design/index.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-material-design/index'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-material-design/lib/components/Link.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-material-design/lib/components/Link'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-material-design/lib/components/Raised.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-material-design/lib/components/Raised'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-material-design/lib/components/Tab.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-material-design/lib/components/Tab'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-material-design/lib/components/Tabs.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-material-design/lib/components/Tabs'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-material-design/lib/components/Tile.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-material-design/lib/components/Tile'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-move/index.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-move/index'>;
|
||||
}
|
||||
declare module 'react-color/modules/react-move/lib/components/Move.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/react-move/lib/components/Move'>;
|
||||
}
|
||||
declare module 'react-color/modules/remarkable/index.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/remarkable/index'>;
|
||||
}
|
||||
declare module 'react-color/modules/tinycolor2/index.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/tinycolor2/index'>;
|
||||
}
|
||||
declare module 'react-color/modules/webpack-react-static/index.js' {
|
||||
declare module.exports: $Exports<'react-color/modules/webpack-react-static/index'>;
|
||||
}
|
||||
declare module 'react-color/scripts/docs-dist.js' {
|
||||
declare module.exports: $Exports<'react-color/scripts/docs-dist'>;
|
||||
}
|
||||
declare module 'react-color/scripts/docs-server.js' {
|
||||
declare module.exports: $Exports<'react-color/scripts/docs-server'>;
|
||||
}
|
||||
declare module 'react-color/webpack.config.js' {
|
||||
declare module.exports: $Exports<'react-color/webpack.config'>;
|
||||
}
|
||||
52
flow-typed/npm/react-devtools-core_vx.x.x.js
vendored
Normal file
52
flow-typed/npm/react-devtools-core_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
// flow-typed signature: fd664fcf7a2fc39e3ce5d7776ec7ae24
|
||||
// flow-typed version: <<STUB>>/react-devtools-core_v3.0.0/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'react-devtools-core'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'react-devtools-core' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'react-devtools-core/build/backend' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-devtools-core/build/standalone' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-devtools-core/standalone' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'react-devtools-core/build/backend.js' {
|
||||
declare module.exports: $Exports<'react-devtools-core/build/backend'>;
|
||||
}
|
||||
declare module 'react-devtools-core/build/standalone.js' {
|
||||
declare module.exports: $Exports<'react-devtools-core/build/standalone'>;
|
||||
}
|
||||
declare module 'react-devtools-core/index' {
|
||||
declare module.exports: $Exports<'react-devtools-core'>;
|
||||
}
|
||||
declare module 'react-devtools-core/index.js' {
|
||||
declare module.exports: $Exports<'react-devtools-core'>;
|
||||
}
|
||||
declare module 'react-devtools-core/standalone.js' {
|
||||
declare module.exports: $Exports<'react-devtools-core/standalone'>;
|
||||
}
|
||||
157
flow-typed/npm/react-redux_v5.x.x.js
vendored
Normal file
157
flow-typed/npm/react-redux_v5.x.x.js
vendored
Normal file
@@ -0,0 +1,157 @@
|
||||
// flow-typed signature: 16b40ff613d36712444ef20fb107de7c
|
||||
// flow-typed version: be6cfc6753/react-redux_v5.x.x/flow_>=v0.62.0
|
||||
|
||||
import type { Dispatch, Store } from "redux";
|
||||
|
||||
declare module "react-redux" {
|
||||
import type { ComponentType, ElementConfig } from 'react';
|
||||
|
||||
declare export class Provider<S, A> extends React$Component<{
|
||||
store: Store<S, A>,
|
||||
children?: any
|
||||
}> {}
|
||||
|
||||
declare export function createProvider(
|
||||
storeKey?: string,
|
||||
subKey?: string
|
||||
): Provider<*, *>;
|
||||
|
||||
/*
|
||||
|
||||
S = State
|
||||
A = Action
|
||||
OP = OwnProps
|
||||
SP = StateProps
|
||||
DP = DispatchProps
|
||||
MP = Merge props
|
||||
MDP = Map dispatch to props object
|
||||
RSP = Returned state props
|
||||
RDP = Returned dispatch props
|
||||
RMP = Returned merge props
|
||||
CP = Props for returned component
|
||||
Com = React Component
|
||||
*/
|
||||
|
||||
declare type MapStateToProps<S: Object, SP: Object, RSP: Object> = (state: S, props: SP) => RSP;
|
||||
|
||||
declare type MapDispatchToProps<A, OP: Object, RDP: Object> = (dispatch: Dispatch<A>, ownProps: OP) => RDP;
|
||||
|
||||
declare type MergeProps<SP: Object, DP: Object, MP: Object, RMP: Object> = (
|
||||
stateProps: SP,
|
||||
dispatchProps: DP,
|
||||
ownProps: MP
|
||||
) => RMP;
|
||||
|
||||
declare type ConnectOptions<S: Object, OP: Object, RSP: Object, RMP: Object> = {|
|
||||
pure?: boolean,
|
||||
withRef?: boolean,
|
||||
areStatesEqual?: (next: S, prev: S) => boolean,
|
||||
areOwnPropsEqual?: (next: OP, prev: OP) => boolean,
|
||||
areStatePropsEqual?: (next: RSP, prev: RSP) => boolean,
|
||||
areMergedPropsEqual?: (next: RMP, prev: RMP) => boolean,
|
||||
storeKey?: string
|
||||
|};
|
||||
|
||||
declare type OmitDispatch<Component> = $Diff<Component, {dispatch: Dispatch<*>}>;
|
||||
|
||||
declare export function connect<
|
||||
Com: ComponentType<*>,
|
||||
S: Object,
|
||||
DP: Object,
|
||||
RSP: Object,
|
||||
CP: $Diff<OmitDispatch<ElementConfig<Com>>, RSP>
|
||||
>(
|
||||
mapStateToProps: MapStateToProps<S, DP, RSP>,
|
||||
mapDispatchToProps?: null
|
||||
): (component: Com) => ComponentType<CP & DP>;
|
||||
|
||||
declare export function connect<Com: ComponentType<*>>(
|
||||
mapStateToProps?: null,
|
||||
mapDispatchToProps?: null
|
||||
): (component: Com) => ComponentType<OmitDispatch<ElementConfig<Com>>>;
|
||||
|
||||
declare export function connect<
|
||||
Com: ComponentType<*>,
|
||||
A,
|
||||
S: Object,
|
||||
DP: Object,
|
||||
SP: Object,
|
||||
RSP: Object,
|
||||
RDP: Object,
|
||||
CP: $Diff<$Diff<ElementConfig<Com>, RSP>, RDP>
|
||||
>(
|
||||
mapStateToProps: MapStateToProps<S, SP, RSP>,
|
||||
mapDispatchToProps: MapDispatchToProps<A, DP, RDP>
|
||||
): (component: Com) => ComponentType<CP & SP & DP>;
|
||||
|
||||
declare export function connect<
|
||||
Com: ComponentType<*>,
|
||||
A,
|
||||
OP: Object,
|
||||
DP: Object,
|
||||
PR: Object,
|
||||
CP: $Diff<ElementConfig<Com>, DP>
|
||||
>(
|
||||
mapStateToProps?: null,
|
||||
mapDispatchToProps: MapDispatchToProps<A, OP, DP>
|
||||
): (Com) => ComponentType<CP & OP>;
|
||||
|
||||
declare export function connect<
|
||||
Com: ComponentType<*>,
|
||||
MDP: Object
|
||||
>(
|
||||
mapStateToProps?: null,
|
||||
mapDispatchToProps: MDP
|
||||
): (component: Com) => ComponentType<$Diff<ElementConfig<Com>, MDP>>;
|
||||
|
||||
declare export function connect<
|
||||
Com: ComponentType<*>,
|
||||
S: Object,
|
||||
SP: Object,
|
||||
RSP: Object,
|
||||
MDP: Object,
|
||||
CP: $Diff<ElementConfig<Com>, RSP>
|
||||
>(
|
||||
mapStateToProps: MapStateToProps<S, SP, RSP>,
|
||||
mapDispatchToPRops: MDP
|
||||
): (component: Com) => ComponentType<$Diff<CP, MDP> & SP>;
|
||||
|
||||
declare export function connect<
|
||||
Com: ComponentType<*>,
|
||||
A,
|
||||
S: Object,
|
||||
DP: Object,
|
||||
SP: Object,
|
||||
RSP: Object,
|
||||
RDP: Object,
|
||||
MP: Object,
|
||||
RMP: Object,
|
||||
CP: $Diff<ElementConfig<Com>, RMP>
|
||||
>(
|
||||
mapStateToProps: MapStateToProps<S, SP, RSP>,
|
||||
mapDispatchToProps: ?MapDispatchToProps<A, DP, RDP>,
|
||||
mergeProps: MergeProps<RSP, RDP, MP, RMP>
|
||||
): (component: Com) => ComponentType<CP & SP & DP & MP>;
|
||||
|
||||
declare export function connect<Com: ComponentType<*>,
|
||||
A,
|
||||
S: Object,
|
||||
DP: Object,
|
||||
SP: Object,
|
||||
RSP: Object,
|
||||
RDP: Object,
|
||||
MP: Object,
|
||||
RMP: Object
|
||||
>(
|
||||
mapStateToProps: ?MapStateToProps<S, SP, RSP>,
|
||||
mapDispatchToProps: ?MapDispatchToProps<A, DP, RDP>,
|
||||
mergeProps: ?MergeProps<RSP, RDP, MP, RMP>,
|
||||
options: ConnectOptions<S, SP & DP & MP, RSP, RMP>
|
||||
): (component: Com) => ComponentType<$Diff<ElementConfig<Com>, RMP> & SP & DP & MP>;
|
||||
|
||||
declare export default {
|
||||
Provider: typeof Provider,
|
||||
createProvider: typeof createProvider,
|
||||
connect: typeof connect,
|
||||
};
|
||||
}
|
||||
66
flow-typed/npm/react-test-renderer_vx.x.x.js
vendored
Normal file
66
flow-typed/npm/react-test-renderer_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
// flow-typed signature: d75e9be7ed16f88e288f787e982584b8
|
||||
// flow-typed version: <<STUB>>/react-test-renderer_v^16/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'react-test-renderer'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'react-test-renderer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'react-test-renderer/cjs/react-test-renderer-shallow.development' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-test-renderer/cjs/react-test-renderer-shallow.production.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-test-renderer/cjs/react-test-renderer.development' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-test-renderer/cjs/react-test-renderer.production.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'react-test-renderer/shallow' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'react-test-renderer/cjs/react-test-renderer-shallow.development.js' {
|
||||
declare module.exports: $Exports<'react-test-renderer/cjs/react-test-renderer-shallow.development'>;
|
||||
}
|
||||
declare module 'react-test-renderer/cjs/react-test-renderer-shallow.production.min.js' {
|
||||
declare module.exports: $Exports<'react-test-renderer/cjs/react-test-renderer-shallow.production.min'>;
|
||||
}
|
||||
declare module 'react-test-renderer/cjs/react-test-renderer.development.js' {
|
||||
declare module.exports: $Exports<'react-test-renderer/cjs/react-test-renderer.development'>;
|
||||
}
|
||||
declare module 'react-test-renderer/cjs/react-test-renderer.production.min.js' {
|
||||
declare module.exports: $Exports<'react-test-renderer/cjs/react-test-renderer.production.min'>;
|
||||
}
|
||||
declare module 'react-test-renderer/index' {
|
||||
declare module.exports: $Exports<'react-test-renderer'>;
|
||||
}
|
||||
declare module 'react-test-renderer/index.js' {
|
||||
declare module.exports: $Exports<'react-test-renderer'>;
|
||||
}
|
||||
declare module 'react-test-renderer/shallow.js' {
|
||||
declare module.exports: $Exports<'react-test-renderer/shallow'>;
|
||||
}
|
||||
1376
flow-typed/npm/react-virtualized_vx.x.x.js
vendored
Normal file
1376
flow-typed/npm/react-virtualized_vx.x.x.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
59
flow-typed/npm/redux_v3.x.x.js
vendored
Normal file
59
flow-typed/npm/redux_v3.x.x.js
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
// flow-typed signature: cca4916b0213065533df8335c3285a4a
|
||||
// flow-typed version: cab04034e7/redux_v3.x.x/flow_>=v0.55.x
|
||||
|
||||
declare module 'redux' {
|
||||
|
||||
/*
|
||||
|
||||
S = State
|
||||
A = Action
|
||||
D = Dispatch
|
||||
|
||||
*/
|
||||
|
||||
declare export type DispatchAPI<A> = (action: A) => A;
|
||||
declare export type Dispatch<A: { type: $Subtype<string> }> = DispatchAPI<A>;
|
||||
|
||||
declare export type MiddlewareAPI<S, A, D = Dispatch<A>> = {
|
||||
dispatch: D;
|
||||
getState(): S;
|
||||
};
|
||||
|
||||
declare export type Store<S, A, D = Dispatch<A>> = {
|
||||
// rewrite MiddlewareAPI members in order to get nicer error messages (intersections produce long messages)
|
||||
dispatch: D;
|
||||
getState(): S;
|
||||
subscribe(listener: () => void): () => void;
|
||||
replaceReducer(nextReducer: Reducer<S, A>): void
|
||||
};
|
||||
|
||||
declare export type Reducer<S, A> = (state: S | void, action: A) => S;
|
||||
|
||||
declare export type CombinedReducer<S, A> = (state: $Shape<S> & {} | void, action: A) => S;
|
||||
|
||||
declare export type Middleware<S, A, D = Dispatch<A>> =
|
||||
(api: MiddlewareAPI<S, A, D>) =>
|
||||
(next: D) => D;
|
||||
|
||||
declare export type StoreCreator<S, A, D = Dispatch<A>> = {
|
||||
(reducer: Reducer<S, A>, enhancer?: StoreEnhancer<S, A, D>): Store<S, A, D>;
|
||||
(reducer: Reducer<S, A>, preloadedState: S, enhancer?: StoreEnhancer<S, A, D>): Store<S, A, D>;
|
||||
};
|
||||
|
||||
declare export type StoreEnhancer<S, A, D = Dispatch<A>> = (next: StoreCreator<S, A, D>) => StoreCreator<S, A, D>;
|
||||
|
||||
declare export function createStore<S, A, D>(reducer: Reducer<S, A>, enhancer?: StoreEnhancer<S, A, D>): Store<S, A, D>;
|
||||
declare export function createStore<S, A, D>(reducer: Reducer<S, A>, preloadedState?: S, enhancer?: StoreEnhancer<S, A, D>): Store<S, A, D>;
|
||||
|
||||
declare export function applyMiddleware<S, A, D>(...middlewares: Array<Middleware<S, A, D>>): StoreEnhancer<S, A, D>;
|
||||
|
||||
declare export type ActionCreator<A, B> = (...args: Array<B>) => A;
|
||||
declare export type ActionCreators<K, A> = { [key: K]: ActionCreator<A, any> };
|
||||
|
||||
declare export function bindActionCreators<A, C: ActionCreator<A, any>, D: DispatchAPI<A>>(actionCreator: C, dispatch: D): C;
|
||||
declare export function bindActionCreators<A, K, C: ActionCreators<K, A>, D: DispatchAPI<A>>(actionCreators: C, dispatch: D): C;
|
||||
|
||||
declare export function combineReducers<O: Object, A>(reducers: O): CombinedReducer<$ObjMap<O, <S>(r: Reducer<S, any>) => S>, A>;
|
||||
|
||||
declare export var compose: $Compose;
|
||||
}
|
||||
8
flow-typed/npm/rsocket.js
vendored
Normal file
8
flow-typed/npm/rsocket.js
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
declare module 'rsocket-core' {
|
||||
declare module.exports: $Exports<'rsocket-core'>;
|
||||
}
|
||||
|
||||
declare module 'rsocket-tcp-server' {
|
||||
declare module.exports: $Exports<'rsocket-tcp-server'>;
|
||||
}
|
||||
32
flow-typed/npm/string-natural-compare_vx.x.x.js
vendored
Normal file
32
flow-typed/npm/string-natural-compare_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// flow-typed signature: 843db49f208e061075c2c057f6db5c4d
|
||||
// flow-typed version: <<STUB>>/string-natural-compare_v^2.0.2/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'string-natural-compare'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'string-natural-compare' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'string-natural-compare/natural-compare' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'string-natural-compare/natural-compare.js' {
|
||||
declare module.exports: $Exports<'string-natural-compare/natural-compare'>;
|
||||
}
|
||||
1305
flow-typed/npm/vis_vx.x.x.js
vendored
Normal file
1305
flow-typed/npm/vis_vx.x.x.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
164
flow-typed/npm/websocket_vx.x.x.js
vendored
Normal file
164
flow-typed/npm/websocket_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,164 @@
|
||||
// flow-typed signature: a099122576a24c7a78325271cdd0048f
|
||||
// flow-typed version: <<STUB>>/websocket_v^1.0.24/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'websocket'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'websocket' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'websocket/gulpfile' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/browser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/BufferUtil.fallback' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/BufferUtil' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/Deprecation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/Validation.fallback' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/Validation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/version' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/W3CWebSocket' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/websocket' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/WebSocketClient' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/WebSocketConnection' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/WebSocketFrame' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/WebSocketRequest' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/WebSocketRouter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/WebSocketRouterRequest' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/lib/WebSocketServer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'websocket/vendor/FastBufferList' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'websocket/gulpfile.js' {
|
||||
declare module.exports: $Exports<'websocket/gulpfile'>;
|
||||
}
|
||||
declare module 'websocket/index' {
|
||||
declare module.exports: $Exports<'websocket'>;
|
||||
}
|
||||
declare module 'websocket/index.js' {
|
||||
declare module.exports: $Exports<'websocket'>;
|
||||
}
|
||||
declare module 'websocket/lib/browser.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/browser'>;
|
||||
}
|
||||
declare module 'websocket/lib/BufferUtil.fallback.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/BufferUtil.fallback'>;
|
||||
}
|
||||
declare module 'websocket/lib/BufferUtil.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/BufferUtil'>;
|
||||
}
|
||||
declare module 'websocket/lib/Deprecation.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/Deprecation'>;
|
||||
}
|
||||
declare module 'websocket/lib/utils.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/utils'>;
|
||||
}
|
||||
declare module 'websocket/lib/Validation.fallback.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/Validation.fallback'>;
|
||||
}
|
||||
declare module 'websocket/lib/Validation.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/Validation'>;
|
||||
}
|
||||
declare module 'websocket/lib/version.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/version'>;
|
||||
}
|
||||
declare module 'websocket/lib/W3CWebSocket.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/W3CWebSocket'>;
|
||||
}
|
||||
declare module 'websocket/lib/websocket.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/websocket'>;
|
||||
}
|
||||
declare module 'websocket/lib/WebSocketClient.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/WebSocketClient'>;
|
||||
}
|
||||
declare module 'websocket/lib/WebSocketConnection.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/WebSocketConnection'>;
|
||||
}
|
||||
declare module 'websocket/lib/WebSocketFrame.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/WebSocketFrame'>;
|
||||
}
|
||||
declare module 'websocket/lib/WebSocketRequest.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/WebSocketRequest'>;
|
||||
}
|
||||
declare module 'websocket/lib/WebSocketRouter.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/WebSocketRouter'>;
|
||||
}
|
||||
declare module 'websocket/lib/WebSocketRouterRequest.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/WebSocketRouterRequest'>;
|
||||
}
|
||||
declare module 'websocket/lib/WebSocketServer.js' {
|
||||
declare module.exports: $Exports<'websocket/lib/WebSocketServer'>;
|
||||
}
|
||||
declare module 'websocket/vendor/FastBufferList.js' {
|
||||
declare module.exports: $Exports<'websocket/vendor/FastBufferList'>;
|
||||
}
|
||||
108
flow-typed/npm/ws_vx.x.x.js
vendored
Normal file
108
flow-typed/npm/ws_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,108 @@
|
||||
// flow-typed signature: efc8a980cb830128a9eaa7f9ee01567b
|
||||
// flow-typed version: <<STUB>>/ws_v^3.0.0/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'ws'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'ws' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'ws/lib/BufferUtil' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ws/lib/Constants' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ws/lib/ErrorCodes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ws/lib/EventTarget' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ws/lib/Extensions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ws/lib/PerMessageDeflate' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ws/lib/Receiver' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ws/lib/Sender' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ws/lib/Validation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ws/lib/WebSocket' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ws/lib/WebSocketServer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'ws/index' {
|
||||
declare module.exports: $Exports<'ws'>;
|
||||
}
|
||||
declare module 'ws/index.js' {
|
||||
declare module.exports: $Exports<'ws'>;
|
||||
}
|
||||
declare module 'ws/lib/BufferUtil.js' {
|
||||
declare module.exports: $Exports<'ws/lib/BufferUtil'>;
|
||||
}
|
||||
declare module 'ws/lib/Constants.js' {
|
||||
declare module.exports: $Exports<'ws/lib/Constants'>;
|
||||
}
|
||||
declare module 'ws/lib/ErrorCodes.js' {
|
||||
declare module.exports: $Exports<'ws/lib/ErrorCodes'>;
|
||||
}
|
||||
declare module 'ws/lib/EventTarget.js' {
|
||||
declare module.exports: $Exports<'ws/lib/EventTarget'>;
|
||||
}
|
||||
declare module 'ws/lib/Extensions.js' {
|
||||
declare module.exports: $Exports<'ws/lib/Extensions'>;
|
||||
}
|
||||
declare module 'ws/lib/PerMessageDeflate.js' {
|
||||
declare module.exports: $Exports<'ws/lib/PerMessageDeflate'>;
|
||||
}
|
||||
declare module 'ws/lib/Receiver.js' {
|
||||
declare module.exports: $Exports<'ws/lib/Receiver'>;
|
||||
}
|
||||
declare module 'ws/lib/Sender.js' {
|
||||
declare module.exports: $Exports<'ws/lib/Sender'>;
|
||||
}
|
||||
declare module 'ws/lib/Validation.js' {
|
||||
declare module.exports: $Exports<'ws/lib/Validation'>;
|
||||
}
|
||||
declare module 'ws/lib/WebSocket.js' {
|
||||
declare module.exports: $Exports<'ws/lib/WebSocket'>;
|
||||
}
|
||||
declare module 'ws/lib/WebSocketServer.js' {
|
||||
declare module.exports: $Exports<'ws/lib/WebSocketServer'>;
|
||||
}
|
||||
101
flow-typed/npm/yargs_vx.x.x.js
vendored
Normal file
101
flow-typed/npm/yargs_vx.x.x.js
vendored
Normal file
@@ -0,0 +1,101 @@
|
||||
// flow-typed signature: 3efe3623a87ff36c0bcfb0fbcdbdf729
|
||||
// flow-typed version: <<STUB>>/yargs_v^10.0.3/flow_v0.59.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'yargs'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'yargs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'yargs/lib/apply-extends' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'yargs/lib/argsert' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'yargs/lib/command' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'yargs/lib/completion' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'yargs/lib/levenshtein' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'yargs/lib/obj-filter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'yargs/lib/usage' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'yargs/lib/validation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'yargs/lib/yerror' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'yargs/yargs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'yargs/index' {
|
||||
declare module.exports: $Exports<'yargs'>;
|
||||
}
|
||||
declare module 'yargs/index.js' {
|
||||
declare module.exports: $Exports<'yargs'>;
|
||||
}
|
||||
declare module 'yargs/lib/apply-extends.js' {
|
||||
declare module.exports: $Exports<'yargs/lib/apply-extends'>;
|
||||
}
|
||||
declare module 'yargs/lib/argsert.js' {
|
||||
declare module.exports: $Exports<'yargs/lib/argsert'>;
|
||||
}
|
||||
declare module 'yargs/lib/command.js' {
|
||||
declare module.exports: $Exports<'yargs/lib/command'>;
|
||||
}
|
||||
declare module 'yargs/lib/completion.js' {
|
||||
declare module.exports: $Exports<'yargs/lib/completion'>;
|
||||
}
|
||||
declare module 'yargs/lib/levenshtein.js' {
|
||||
declare module.exports: $Exports<'yargs/lib/levenshtein'>;
|
||||
}
|
||||
declare module 'yargs/lib/obj-filter.js' {
|
||||
declare module.exports: $Exports<'yargs/lib/obj-filter'>;
|
||||
}
|
||||
declare module 'yargs/lib/usage.js' {
|
||||
declare module.exports: $Exports<'yargs/lib/usage'>;
|
||||
}
|
||||
declare module 'yargs/lib/validation.js' {
|
||||
declare module.exports: $Exports<'yargs/lib/validation'>;
|
||||
}
|
||||
declare module 'yargs/lib/yerror.js' {
|
||||
declare module.exports: $Exports<'yargs/lib/yerror'>;
|
||||
}
|
||||
declare module 'yargs/yargs.js' {
|
||||
declare module.exports: $Exports<'yargs/yargs'>;
|
||||
}
|
||||
8
flow-typed/react.js
vendored
Normal file
8
flow-typed/react.js
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* Copyright 2018-present Facebook.
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
* @format
|
||||
*/
|
||||
|
||||
declare var React: $Exports<'react'>;
|
||||
Reference in New Issue
Block a user