diff --git a/.flowconfig b/.flowconfig deleted file mode 100644 index fa998b3..0000000 --- a/.flowconfig +++ /dev/null @@ -1,14 +0,0 @@ -[ignore] -.*/node_modules/* -.*/packages/*/lib/* - -[include] - -[libs] -./packages/*/* - -[options] -esproposal.optional_chaining=enable -munge_underscores=true -emoji=true -esproposal.export_star_as=enable \ No newline at end of file diff --git a/flow-typed/eris.js b/flow-typed/eris.js deleted file mode 100644 index 8bac3a3..0000000 --- a/flow-typed/eris.js +++ /dev/null @@ -1,2229 +0,0 @@ -// @flow -/** - * Flowtype definitions for eris - * Generated by Flowgen from a Typescript Definition - * Flowgen v1.8.0 - * Author: [Katalina T.](http://twitter.com/kayteh) - * Repo: http://github.com/kayteh/roleypoly - */ - -declare module 'eris' { - import type EventEmitter from 'events' - - import type { Readable as ReadableStream } from 'stream' - - declare interface JSONCache { - [s: string]: any; - } - declare interface SimpleJSON { - toJSON(simple?: boolean): JSONCache; - } - declare interface NestedJSON { - toJSON(arg?: any, cache?: Array): JSONCache; - } - declare type TextableChannel = TextChannel | PrivateChannel | GroupChannel; - declare type AnyChannel = - | TextChannel - | VoiceChannel - | CategoryChannel - | PrivateChannel - | GroupChannel; - declare type AnyGuildChannel = TextChannel | VoiceChannel | CategoryChannel; - declare interface CreateInviteOptions { - maxAge?: number; - maxUses?: number; - temporary?: boolean; - } - declare interface Invitable { - getInvites(): Promise; - createInvite( - options?: CreateInviteOptions, - reason?: string - ): Promise; - } - declare interface Textable { - lastMessageID: string; - messages: Collection; - sendTyping(): Promise; - getMessage(messageID: string): Promise; - getMessages( - limit?: number, - before?: string, - after?: string, - around?: string - ): Promise; - getPins(): Promise; - createMessage( - content: MessageContent, - file?: MessageFile - ): Promise; - editMessage(messageID: string, content: MessageContent): Promise; - pinMessage(messageID: string): Promise; - unpinMessage(messageID: string): Promise; - getMessageReaction( - messageID: string, - reaction: string, - limit?: number, - before?: string, - after?: string - ): Promise; - addMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReactions(messageID: string): Promise; - deleteMessage(messageID: string, reason?: string): Promise; - unsendMessage(messageID: string): Promise; - } - declare interface OldCall { - participants: string[]; - endedTimestamp?: number; - ringing: string[]; - region: string; - unavailable: boolean; - } - declare interface OldChannel { - name: string; - position: string; - topic?: string; - bitrate?: number; - permissionOverwrites: Collection; - } - declare type FriendSuggestionReasons = Array<{ - type: number, - platform_type: string, - name: string - }>; - declare interface MemberPartial { - id: string; - user: User; - } - declare interface OldPresence { - status: string; - game?: { - name: string, - type: number, - url?: string - }; - } - declare interface OldVoiceState { - mute: boolean; - deaf: boolean; - selfMute: boolean; - selfDeaf: boolean; - } - declare interface Emittable { - on(event: string, listener: Function): *; - on(event: "ready" | "disconnect", listener: () => void): *; - on( - event: "callCreate" | "callRing" | "callDelete", - listener: (call: Call) => void - ): *; - on( - event: "callUpdate", - listener: (call: Call, oldCall: OldCall) => void - ): *; - on( - event: "channelCreate" | "channelDelete", - listener: (channel: AnyChannel) => void - ): *; - on( - event: "channelPinUpdate", - listener: ( - channel: TextableChannel, - timestamp: number, - oldTimestamp: number - ) => void - ): *; - on( - event: "channelRecipientAdd" | "channelRecipientRemove", - listener: (channel: GroupChannel, user: User) => void - ): *; - on( - event: "channelUpdate", - listener: (channel: AnyChannel, oldChannel: OldChannel) => void - ): *; - on( - event: "friendSuggestionCreate", - listener: (user: User, reasons: FriendSuggestionReasons) => void - ): *; - on(event: "friendSuggestionDelete", listener: (user: User) => void): *; - on( - event: "guildAvailable" | "guildBanAdd" | "guildBanRemove", - listener: (guild: Guild, user: User) => void - ): *; - on( - event: "guildDelete" | "guildUnavailable" | "guildCreate", - listener: (guild: Guild) => void - ): *; - on( - event: "guildEmojisUpdate", - listener: (guild: Guild, emojis: Emoji[], oldEmojis: Emoji[]) => void - ): *; - on( - event: "guildMemberAdd", - listener: (guild: Guild, member: Member) => void - ): *; - on( - event: "guildMemberChunk", - listener: (guild: Guild, members: Member[]) => void - ): *; - on( - event: "guildMemberRemove", - listener: (guild: Guild, member: Member | MemberPartial) => void - ): *; - on( - event: "guildMemberUpdate", - listener: ( - guild: Guild, - member: Member, - oldMember: { - roles: string[], - nick?: string - } - ) => void - ): *; - on( - event: "guildRoleCreate" | "guildRoleDelete", - listener: (guild: Guild, role: Role) => void - ): *; - on( - event: "guildRoleUpdate", - listener: (guild: Guild, role: Role, oldRole: RoleOptions) => void - ): *; - on( - event: "guildUpdate", - listener: (guild: Guild, oldGuild: GuildOptions) => void - ): *; - on(event: "hello", listener: (trace: string[], id: number) => void): *; - on(event: "messageCreate", listener: (message: Message) => void): *; - on( - event: "messageDelete" | "messageReactionRemoveAll", - listener: (message: PossiblyUncachedMessage) => void - ): *; - on( - event: "messageDeleteBulk", - listener: (messages: PossiblyUncachedMessage[]) => void - ): *; - on( - event: "messageReactionAdd" | "messageReactionRemove", - listener: ( - message: PossiblyUncachedMessage, - emoji: Emoji, - userID: string - ) => void - ): *; - on( - event: "messageUpdate", - listener: ( - message: Message, - oldMessage?: { - attachments: Attachment[], - embeds: Embed[], - content: string, - editedTimestamp?: number, - mentionedBy?: any, - tts: boolean, - mentions: string[], - roleMentions: string[], - channelMentions: string[] - } - ) => void - ): *; - on( - event: "presenceUpdate", - listener: ( - other: Member | Relationship, - oldPresence?: OldPresence - ) => void - ): *; - on( - event: "rawWS" | "unknown", - listener: (packet: RawPacket, id: number) => void - ): *; - on( - event: "relationshipAdd" | "relationshipRemove", - listener: (relationship: Relationship) => void - ): *; - on( - event: "relationshipUpdate", - listener: ( - relationship: Relationship, - oldRelationship: { - type: number - } - ) => void - ): *; - on( - event: "shardPreReady" | "connect", - listener: (id: number) => void - ): *; - on( - event: "typingStart", - listener: (channel: TextableChannel, user: User) => void - ): *; - on( - event: "unavailableGuildCreate", - listener: (guild: UnavailableGuild) => void - ): *; - on( - event: "userUpdate", - listener: ( - user: User, - oldUser: { - username: string, - discriminator: string, - avatar?: string - } - ) => void - ): *; - on( - event: "voiceChannelJoin", - listener: (member: Member, newChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelLeave", - listener: (member: Member, oldChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelSwitch", - listener: ( - member: Member, - newChannel: VoiceChannel, - oldChannel: VoiceChannel - ) => void - ): *; - on( - event: "voiceStateUpdate", - listener: (member: Member, oldState: OldVoiceState) => void - ): *; - on( - event: "warn" | "debug", - listener: (message: string, id: number) => void - ): *; - } - declare interface IConstants { - DefaultAvatarHashes: string[]; - ImageFormats: string[]; - GatewayOPCodes: { - [key: string]: number - }; - GATEWAY_VERSION: number; - Permissions: { - [key: string]: number - }; - VoiceOPCodes: { - [key: string]: number - }; - SystemJoinMessages: string[]; - AuditLogActions: { - [key: string]: number - }; - } - declare export var Constants: IConstants; - declare interface WebhookPayload { - content?: string; - file?: - | { - file: Buffer, - name: string - } - | Array<{ - file: Buffer, - name: string - }>; - embeds?: EmbedOptions[]; - username?: string; - avatarURL?: string; - tts?: boolean; - wait?: boolean; - disableEveryone?: boolean; - } - declare interface EmbedBase { - title?: string; - description?: string; - url?: string; - timestamp?: string; - color?: number; - footer?: { - text: string, - icon_url?: string, - proxy_icon_url?: string - }; - image?: { - url?: string, - proxy_url?: string, - height?: number, - width?: number - }; - thumbnail?: { - url?: string, - proxy_url?: string, - height?: number, - width?: number - }; - video?: { - url: string, - height?: number, - width?: number - }; - provider?: { - name: string, - url?: string - }; - fields?: Array<{ - name?: string, - value?: string, - inline?: boolean - }>; - author?: { - name: string, - url?: string, - icon_url?: string, - proxy_icon_url?: string - }; - } - declare type Embed = { - type: string - } & EmbedBase; - declare type EmbedOptions = { - type?: string - } & EmbedBase; - declare interface Webhook { - name: string; - channel_id: string; - token: string; - avatar?: string; - guild_id: string; - id: string; - user: { - username: string, - discriminator: string, - id: string, - avatar?: string - }; - } - declare interface GuildEmbed { - channel_id?: string; - enabled: boolean; - } - declare interface Attachment { - url: string; - proxy_url: string; - size: number; - id: string; - filename: string; - } - declare interface VoiceRegion { - name: string; - deprecated: boolean; - custom: boolean; - vip: boolean; - optimal: boolean; - id: string; - } - declare interface UserSettings { - theme: string; - status: string; - show_current_game: boolean; - restricted_guilds: string[]; - render_reactions: boolean; - render_embeds: boolean; - message_display_compact: boolean; - locale: string; - inline_embed_media: boolean; - inline_attachment_media: boolean; - guild_positions: string[]; - friend_source_flags: { - all: boolean - }; - explicit_content_filter: number; - enable_tts_command: boolean; - developer_mode: boolean; - detect_platform_accounts: boolean; - default_guilds_restricted: boolean; - convert_emojis: boolean; - afk_timeout: number; - } - declare interface GuildSettings { - suppress_everyone: boolean; - muted: boolean; - mobile_push: boolean; - message_notifications: number; - guild_id: string; - channel_override: Array<{ - muted: boolean, - message_notifications: number, - channel_id: string - }>; - } - declare interface UserProfile { - premium_since?: number; - mutual_guilds: Array<{ - nick?: string, - id: string - }>; - user: { - username: string, - discriminator: string, - flags: number, - id: string, - avatar?: string - }; - connected_accounts: Array<{ - verified: boolean, - type: string, - id: string, - name: string - }>; - } - declare interface Connection { - verified: boolean; - revoked: boolean; - integrations: any[]; - visibility: number; - friend_sync: boolean; - type: string; - id: string; - name: string; - } - declare interface GuildAuditLog { - users: User[]; - entries: GuildAuditLogEntry[]; - } - declare interface BaseData { - id: string; - [key: string]: {}; - } - declare type MessageContent = - | string - | { - content?: string, - tts?: boolean, - disableEveryone?: boolean, - embed?: EmbedOptions - }; - declare interface MessageFile { - file: Buffer | string; - name: string; - } - declare interface EmojiBase { - name: string; - icon?: string; - } - declare type EmojiOptions = { - roles?: string[] - } & EmojiBase; - declare type Emoji = { - roles: string[] - } & EmojiBase; - declare interface IntegrationOptions { - expireBehavior: string; - expireGracePeriod: string; - enableEmoticons: string; - } - declare interface GuildOptions { - name?: string; - region?: string; - icon?: string; - verificationLevel?: number; - defaultNotifications?: number; - afkChannelID?: string; - afkTimeout?: number; - ownerID?: string; - splash?: string; - } - declare interface MemberOptions { - roles?: string[]; - nick?: string; - mute?: boolean; - deaf?: boolean; - channelID?: string; - } - declare interface RoleOptions { - name?: string; - permissions?: number; - color?: number; - hoist?: boolean; - mentionable?: boolean; - } - declare interface GamePresence { - name: string; - type?: number; - url?: string; - } - declare interface SearchOptions { - sortBy?: string; - sortOrder?: string; - content?: string; - authorID?: string; - minID?: string; - maxID?: string; - limit?: number; - offset?: number; - contextSize?: number; - has?: string; - embedProviders?: string; - embedTypes?: string; - attachmentExtensions?: string; - attachmentFilename?: string; - channelIDs: string[]; - } - declare interface SearchResults { - totalResults: number; - results: Array< - Array< - Message & { - hit?: boolean - } - > - >; - } - declare interface VoiceResourceOptions { - inlineVolume?: boolean; - voiceDataTimeout?: number; - inputArgs?: string[]; - encoderArgs?: string[]; - format?: string; - frameDuration?: number; - frameSize?: number; - sampleRate?: number; - } - declare type PossiblyUncachedMessage = - | Message - | { - id: string, - channel: TextableChannel - }; - declare interface RawPacket { - op: number; - t?: string; - d?: any; - s?: number; - } - declare type ClientOptions = $Shape<{ - autoreconnect: boolean; - compress: boolean; - connectionTimeout: number; - disableEvents: { - [s: string]: boolean - }; - disableEveryone: boolean; - firstShardID: number; - getAllUsers: boolean; - guildCreateTimeout: number; - largeThreshold: number; - lastShardID: number; - maxShards: number | "auto"; - messageLimit: number; - opusOnly: boolean; - restMode: boolean; - seedVoiceConnections: boolean; - defaultImageFormat: string; - defaultImageSize: number; - ws: any; - latencyThreshold: number; - }> - declare type CommandClientOptions = $Shape<{ - defaultHelpCommand: boolean; - description: string; - ignoreBots: boolean; - ignoreSelf: boolean; - name: string; - owner: string; - prefix: string | string[]; - defaultCommandOptions: CommandOptions; - }> - declare interface Hooks { - preCommand?: (msg: Message, args: string[]) => void; - postCheck?: (msg: Message, args: string[], checksPassed: boolean) => void; - postExecution?: ( - msg: Message, - args: string[], - executionSuccess: boolean - ) => void; - postCommand?: (msg: Message, args: string[], sent?: Message) => void; - } - declare type GenericCheckFunction = (msg: Message) => T; - declare type CommandOptions = $Shape<{ - aliases?: string[]; - caseInsensitive?: boolean; - deleteCommand?: boolean; - argsRequired?: boolean; - guildOnly?: boolean; - dmOnly?: boolean; - description?: string; - fullDescription?: string; - usage?: string; - hooks?: Hooks; - requirements?: { - userIDs?: string[] | GenericCheckFunction, - roleIDs?: string[] | GenericCheckFunction, - roleNames?: string[] | GenericCheckFunction, - permissions?: - | { - [s: string]: boolean - } - | GenericCheckFunction<{ - [s: string]: boolean - }>, - custom?: GenericCheckFunction - }; - cooldown?: number; - cooldownExclusions?: { - userIDs?: string[], - guildIDs?: string[], - channelIDs?: string[] - }; - restartCooldown?: boolean; - cooldownReturns?: number; - cooldownMessage?: string | GenericCheckFunction; - invalidUsageMessage?: string | GenericCheckFunction; - permissionMessage?: string | GenericCheckFunction; - errorMessage?: string | GenericCheckFunction; - reactionButtons?: Array<{ - emoji: string, - type: string, - response: CommandGenerator - }>; - reactionButtonTimeout?: number; - defaultSubcommandOptions?: CommandOptions; - hidden?: boolean; - }> - declare type CommandGeneratorFunction = ( - msg: Message, - args: string[] - ) => Promise | Promise | MessageContent | void; - declare type CommandGenerator = - | CommandGeneratorFunction - | MessageContent - | MessageContent[] - | CommandGeneratorFunction[]; - declare export class ShardManager extends Collection { - constructor(client: Client): *; - connect(shard: Shard): void; - spawn(id: number): void; - toJSON(): string; - } - declare export default class Client extends events$EventEmitter implements SimpleJSON, Emittable { - token: string; - gatewayURL: string; - bot: boolean; - options: ClientOptions; - channelGuildMap: { - [s: string]: string - }; - shards: ShardManager; - guilds: Collection; - privateChannelMap: { - [s: string]: string - }; - privateChannels: Collection; - groupChannels: Collection; - voiceConnections: Collection; - guildShardMap: { - [s: string]: number - }; - startTime: number; - unavailableGuilds: Collection; - uptime: number; - user: ExtendedUser; - users: Collection; - relationships: Collection; - userGuildSettings: { - [s: string]: GuildSettings - }; - userSettings: UserSettings; - notes: { - [s: string]: string - }; - constructor(token: string, options?: ClientOptions): *; - connect(): Promise; - getGateway(): Promise; - getBotGateway(): Promise<{ - url: string, - shards: number - }>; - disconnect(options: { - reconnect: boolean - }): void; - joinVoiceChannel( - channelID: string, - options?: { - shared?: boolean, - opusOnly?: boolean - } - ): Promise; - leaveVoiceChannel(channelID: string): void; - closeVoiceConnection(guildID: string): void; - editAFK(afk: boolean): void; - editStatus(status?: string, game?: GamePresence): void; - getChannel(channelID: string): AnyChannel; - createChannel( - guildID: string, - name: string, - type?: number, - reason?: string, - parentID?: string - ): Promise; - editChannel( - channelID: string, - options: { - name?: string, - icon?: string, - ownerID?: string, - topic?: string, - bitrate?: number, - userLimit?: number, - nsfw?: boolean, - parentID?: string - }, - reason?: string - ): Promise; - editChannelPosition(channelID: string, position: number): Promise; - deleteChannel(channelID: string, reason?: string): Promise; - sendChannelTyping(channelID: string): Promise; - editChannelPermission( - channelID: string, - overwriteID: string, - allow: number, - deny: number, - type: string, - reason?: string - ): Promise; - deleteChannelPermission( - channelID: string, - overwriteID: string, - reason?: string - ): Promise; - getChannelInvites(channelID: string): Promise; - createChannelInvite( - channelID: string, - options?: { - maxAge?: number, - maxUses?: number, - temporary?: boolean, - unique?: boolean - }, - reason?: string - ): Promise; - getChannelWebhooks(channelID: string): Promise; - getWebhook(webhookID: string, token?: string): Promise; - createChannelWebhook( - channelID: string, - options: { - name: string, - avatar: string - }, - reason?: string - ): Promise; - editWebhook( - webhookID: string, - options: { - name?: string, - avatar?: string - }, - token?: string, - reason?: string - ): Promise; - executeWebhook( - webhookID: string, - token: string, - options: WebhookPayload - ): Promise; - executeSlackWebhook( - webhookID: string, - token: string, - options?: { - wait?: boolean - } - ): Promise; - deleteWebhook( - webhookID: string, - token?: string, - reason?: string - ): Promise; - getGuildWebhooks(guildID: string): Promise; - getGuildAuditLogs( - guildID: string, - limit?: number, - before?: string, - actionType?: number - ): Promise; - createGuildEmoji( - guildID: string, - options: EmojiOptions, - reason?: string - ): Promise; - editGuildEmoji( - guildID: string, - emojiID: string, - options: { - name?: string, - roles?: string[] - }, - reason?: string - ): Promise; - deleteGuildEmoji( - guildID: string, - emojiID: string, - reason?: string - ): Promise; - createRole( - guildID: string, - options?: RoleOptions, - reason?: string - ): Promise; - editRole( - guildID: string, - roleID: string, - options: RoleOptions, - reason?: string - ): Promise; - editRolePosition( - guildID: string, - roleID: string, - position: number - ): Promise; - deleteRole(guildID: string, roleID: string, reason?: string): Promise; - getPruneCount(guildID: string, days: number): Promise; - pruneMembers( - guildID: string, - days: number, - reason?: string - ): Promise; - getVoiceRegions(guildID: string): Promise; - getInvite(inviteID: string, withCounts?: boolean): Promise; - acceptInvite(inviteID: string): Promise; - deleteInvite(inviteID: string, reason?: string): Promise; - getSelf(): Promise; - editSelf(options: { - username?: string, - avatar?: string - }): Promise; - getDMChannel(userID: string): Promise; - createGroupChannel(userIDs: string[]): Promise; - getMessage(channelID: string, messageID: string): Promise; - getMessages( - channelID: string, - limit?: number, - before?: string, - after?: string, - around?: string - ): Promise; - getPins(channelID: string): Promise; - createMessage( - channelID: string, - content: MessageContent, - file?: MessageFile - ): Promise; - editMessage( - channelID: string, - messageID: string, - content: MessageContent - ): Promise; - pinMessage(channelID: string, messageID: string): Promise; - unpinMessage(channelID: string, messageID: string): Promise; - getMessageReaction( - channelID: string, - messageID: string, - reaction: string, - limit?: number, - before?: string, - after?: string - ): Promise; - addMessageReaction( - channelID: string, - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReaction( - channelID: string, - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReactions(channelID: string, messageID: string): Promise; - deleteMessage( - channelID: string, - messageID: string, - reason?: string - ): Promise; - deleteMessages( - channelID: string, - messageIDs: string[], - reason?: string - ): Promise; - purgeChannel( - channelID: string, - limit?: number, - filter?: (m: Message) => boolean, - before?: string, - after?: string - ): Promise; - getGuildEmbed(guildID: string): Promise; - getGuildIntegrations(guildID: string): Promise; - editGuildIntegration( - guildID: string, - integrationID: string, - options: IntegrationOptions - ): Promise; - deleteGuildIntegration( - guildID: string, - integrationID: string - ): Promise; - syncGuildIntegration(guildID: string, integrationID: string): Promise; - getGuildInvites(guildID: string): Promise; - banGuildMember( - guildID: string, - userID: string, - deleteMessageDays?: number, - reason?: string - ): Promise; - unbanGuildMember( - guildID: string, - userID: string, - reason?: string - ): Promise; - createGuild(name: string, region: string, icon?: string): Promise; - editGuild( - guildID: string, - options: GuildOptions, - reason?: string - ): Promise; - getGuildBans( - guildID: string - ): Promise< - Array<{ - reason?: string, - user: User - }> - >; - editGuildMember( - guildID: string, - memberID: string, - options: MemberOptions, - reason?: string - ): Promise; - addGuildMemberRole( - guildID: string, - memberID: string, - roleID: string, - reason?: string - ): Promise; - removeGuildMemberRole( - guildID: string, - memberID: string, - roleID: string, - reason?: string - ): Promise; - editNickname(guildID: string, nick: string, reason?: string): Promise; - kickGuildMember( - guildID: string, - userID: string, - reason?: string - ): Promise; - deleteGuild(guildID: string): Promise; - leaveGuild(guildID: string): Promise; - getOAuthApplication( - appID?: string - ): Promise<{ - description: string, - name: string, - owner: { - username: string, - discriminator: string, - id: string, - avatar?: string - }, - bot_public: boolean, - bot_require_code_grant: boolean, - id: string, - icon?: string - }>; - addRelationship(userID: string, block?: boolean): Promise; - removeRelationship(userID: string): Promise; - addGroupRecipient(groupID: string, userID: string): Promise; - removeGroupRecipient(groupID: string, userID: string): Promise; - getUserProfile(userID: string): Promise; - editUserNote(userID: string, note: string): Promise; - deleteUserNote(userID: string): Promise; - getSelfConnections(): Promise; - editSelfConnection( - platform: string, - id: string, - data: { - friendSync: boolean, - visibility: number - } - ): Promise; - deleteSelfConnection(platform: string, id: string): Promise; - getSelfSettings(): Promise; - editSelfSettings(data: UserSettings): Promise; - getSelfMFACodes( - password: string, - regenerate?: boolean - ): Promise<{ - backup_codes: Array<{ - code: string, - consumed: boolean - }> - }>; - enableSelfMFATOTP( - secret: string, - code: string - ): Promise<{ - token: string, - backup_codes: Array<{ - code: string, - consumed: boolean - }> - }>; - disableSelfMFATOTP( - code: string - ): Promise<{ - token: string - }>; - getSelfBilling(): Promise<{ - premium_subscription?: { - status: number, - ended_at?: string, - canceled_at?: string, - created_at: string, - current_period_end?: string, - current_period_start?: string, - plan: string - }, - payment_source?: { - type: string, - brand: string, - invalid: boolean, - last_4: number, - expires_year: number, - expires_month: number - }, - payment_gateway?: string - }>; - getSelfPayments(): Promise< - Array<{ - status: number, - amount_refunded: number, - description: string, - created_at: string, - currency: string, - amount: number - }> - >; - addSelfPremiumSubscription(token: string, plan: string): Promise; - deleteSelfPremiumSubscription(): Promise; - getRESTChannel(channelID: string): Promise; - getRESTGuild(guildID: string): Promise; - getRESTGuilds( - limit?: number, - before?: string, - after?: string - ): Promise; - getRESTGuildChannels(guildID: string): Promise; - getRESTGuildEmojis(guildID: string): Promise; - getRESTGuildEmoji(guildID: string, emojiID: string): Promise; - getRESTGuildMembers( - guildID: string, - limit?: number, - after?: string - ): Promise; - getRESTGuildMember(guildID: string, memberID: string): Promise; - getRESTGuildRoles(guildID: string): Promise; - getRESTUser(userID: string): Promise; - searchChannelMessages( - channelID: string, - query: SearchOptions - ): Promise; - searchGuildMessages( - guildID: string, - query: SearchOptions - ): Promise; - on(event: string, listener: Function): *; - on(event: "ready" | "disconnect", listener: () => void): *; - on( - event: "callCreate" | "callRing" | "callDelete", - listener: (call: Call) => void - ): *; - on( - event: "callUpdate", - listener: (call: Call, oldCall: OldCall) => void - ): *; - on( - event: "channelCreate" | "channelDelete", - listener: (channel: AnyChannel) => void - ): *; - on( - event: "channelPinUpdate", - listener: ( - channel: TextableChannel, - timestamp: number, - oldTimestamp: number - ) => void - ): *; - on( - event: "channelRecipientAdd" | "channelRecipientRemove", - listener: (channel: GroupChannel, user: User) => void - ): *; - on( - event: "channelUpdate", - listener: (channel: AnyChannel, oldChannel: OldChannel) => void - ): *; - on( - event: "friendSuggestionCreate", - listener: (user: User, reasons: FriendSuggestionReasons) => void - ): *; - on(event: "friendSuggestionDelete", listener: (user: User) => void): *; - on( - event: "guildAvailable" | "guildBanAdd" | "guildBanRemove", - listener: (guild: Guild, user: User) => void - ): *; - on( - event: "guildDelete" | "guildUnavailable" | "guildCreate", - listener: (guild: Guild) => void - ): *; - on( - event: "guildEmojisUpdate", - listener: (guild: Guild, emojis: Emoji[], oldEmojis: Emoji[]) => void - ): *; - on( - event: "guildMemberAdd", - listener: (guild: Guild, member: Member) => void - ): *; - on( - event: "guildMemberChunk", - listener: (guild: Guild, members: Member[]) => void - ): *; - on( - event: "guildMemberRemove", - listener: (guild: Guild, member: Member | MemberPartial) => void - ): *; - on( - event: "guildMemberUpdate", - listener: ( - guild: Guild, - member: Member, - oldMember: { - roles: string[], - nick?: string - } - ) => void - ): *; - on( - event: "guildRoleCreate" | "guildRoleDelete", - listener: (guild: Guild, role: Role) => void - ): *; - on( - event: "guildRoleUpdate", - listener: (guild: Guild, role: Role, oldRole: RoleOptions) => void - ): *; - on( - event: "guildUpdate", - listener: (guild: Guild, oldGuild: GuildOptions) => void - ): *; - on(event: "hello", listener: (trace: string[], id: number) => void): *; - on(event: "messageCreate", listener: (message: Message) => void): *; - on( - event: "messageDelete" | "messageReactionRemoveAll", - listener: (message: PossiblyUncachedMessage) => void - ): *; - on( - event: "messageDeleteBulk", - listener: (messages: PossiblyUncachedMessage[]) => void - ): *; - on( - event: "messageReactionAdd" | "messageReactionRemove", - listener: ( - message: PossiblyUncachedMessage, - emoji: Emoji, - userID: string - ) => void - ): *; - on( - event: "messageUpdate", - listener: ( - message: Message, - oldMessage?: { - attachments: Attachment[], - embeds: Embed[], - content: string, - editedTimestamp?: number, - mentionedBy?: any, - tts: boolean, - mentions: string[], - roleMentions: string[], - channelMentions: string[] - } - ) => void - ): *; - on( - event: "presenceUpdate", - listener: ( - other: Member | Relationship, - oldPresence?: OldPresence - ) => void - ): *; - on( - event: "rawWS" | "unknown", - listener: (packet: RawPacket, id: number) => void - ): *; - on( - event: "relationshipAdd" | "relationshipRemove", - listener: (relationship: Relationship) => void - ): *; - on( - event: "relationshipUpdate", - listener: ( - relationship: Relationship, - oldRelationship: { - type: number - } - ) => void - ): *; - on( - event: "typingStart", - listener: (channel: TextableChannel, user: User) => void - ): *; - on( - event: "unavailableGuildCreate", - listener: (guild: UnavailableGuild) => void - ): *; - on( - event: "userUpdate", - listener: ( - user: User, - oldUser: { - username: string, - discriminator: string, - avatar?: string - } - ) => void - ): *; - on( - event: "voiceChannelJoin", - listener: (member: Member, newChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelLeave", - listener: (member: Member, oldChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelSwitch", - listener: ( - member: Member, - newChannel: VoiceChannel, - oldChannel: VoiceChannel - ) => void - ): *; - on( - event: "voiceStateUpdate", - listener: (member: Member, oldState: OldVoiceState) => void - ): *; - on( - event: "warn" | "debug", - listener: (message: string, id: number) => void - ): *; - on( - event: "shardDisconnect" | "error" | "shardPreReady" | "connect", - listener: (err: Error, id: number) => void - ): *; - on( - event: "shardReady" | "shardResume", - listener: (id: number) => void - ): *; - toJSON(simple?: boolean): JSONCache; - } - declare export class VoiceConnection extends events$EventEmitter implements SimpleJSON { - id: string; - channelID: string; - connecting: boolean; - ready: boolean; - playing: boolean; - paused: boolean; - volume: number; - current: { - startTime: number, - playTime: number, - pausedTimestamp?: number, - pausedTime?: number, - options: VoiceResourceOptions - }; - constructor( - id: string, - options?: { - shard?: Shard, - shared?: boolean, - opusOnly?: boolean - } - ): *; - pause(): void; - play( - resource: ReadableStream | string, - options?: VoiceResourceOptions - ): void; - receive(type: string): VoiceDataStream; - resume(): void; - setVolume(volume: number): void; - stopPlaying(): void; - switchChannel(channelID: string): void; - updateVoiceState(selfMute: boolean, selfDeaf: boolean): void; - on(event: "debug" | "warn", listener: (message: string) => void): *; - on(event: "error" | "disconnect", listener: (err: Error) => void): *; - on(event: "pong", listener: (latency: number) => void): *; - on(event: "speakingStart", listener: (userID: string) => void): *; - on(event: "end", listener: () => void): *; - on(event: string, listener: (e: mixed, ...args: Array) => void): *; - toJSON(simple?: boolean): JSONCache; - } - declare export class SharedStream extends events$EventEmitter { - playing: boolean; - ended: boolean; - volume: number; - speaking: boolean; - current: { - startTime: number, - playTime: number, - pausedTimestamp?: number, - pausedTime?: number, - options: VoiceResourceOptions - }; - add(connection: VoiceConnection): void; - play( - resource: ReadableStream | string, - options: VoiceResourceOptions - ): void; - remove(connection: VoiceConnection): void; - setVolume(volume: number): void; - stopPlaying(): void; - } - declare class VoiceDataStream { - type: string; - constructor(type: string): *; - } - declare export class VoiceConnectionManager - extends Collection implements SimpleJSON { - constructor(vcObject: () => T): *; - join( - guildID: string, - channelID: string, - options: VoiceResourceOptions - ): Promise; - leave(guildID: string): void; - switch(guildID: string, channelID: string): void; - toJSON(simple?: boolean): JSONCache; - } - declare class Base implements SimpleJSON { - id: string; - createdAt: number; - constructor(id: string): *; - inspect(): *; - toJSON(simple?: boolean): JSONCache; - } - declare export class Bucket { - tokens: number; - lastReset: number; - lastSend: number; - tokenLimit: number; - interval: number; - constructor( - tokenLimit: number, - interval: number, - latencyRef: { - latency: number - } - ): *; - queue(func: Function): void; - } - declare export class Collection extends Map { - baseObject: (...args: any[]) => T; - limit: number; - constructor(baseObject: (...args: any[]) => T, limit?: number): *; - add(obj: T, extra?: any, replace?: boolean): T; - find(func: (i: T) => boolean): T; - random(): T; - filter(func: (i: T) => boolean): T[]; - map(func: (i: T) => R): R[]; - update(obj: T, extra?: any, replace?: boolean): T; - remove( - obj: - | T - | { - id: string - } - ): T; - } - declare export class Call extends Base { - id: string; - createdAt: number; - channel: GroupChannel; - voiceStates: Collection; - participants: string[]; - endedTimestamp: number; - ringing: string[]; - region: string; - unavailable: boolean; - constructor(data: BaseData, channel: GroupChannel): *; - } - declare export class Channel extends Base { - id: string; - mention: string; - type: number; - createdAt: number; - constructor(data: BaseData): *; - } - declare export class ExtendedUser extends User { - email: string; - verified: boolean; - mfaEnabled: boolean; - } - declare export class GroupChannel extends PrivateChannel { - recipients: Collection; - name: string; - icon: string; - iconURL: string; - ownerID: string; - edit(options: { - name?: string, - icon?: string, - ownerID?: string - }): Promise; - addRecipient(userID: string): Promise; - removeRecipient(userID: string): Promise; - dynamicIconURL(format: string, size: number): string; - } - declare export class Guild extends Base { - id: string; - createdAt: number; - name: string; - verificationLevel: number; - region: string; - icon: string; - afkChannelID: string; - systemChannelID: string; - afkTimeout: number; - defaultNotifications: number; - mfaLevel: number; - joinedAt: number; - ownerID: string; - splash: string; - unavailable: boolean; - large: boolean; - maxPresences: number; - channels: Collection; - members: Collection; - memberCount: number; - roles: Collection; - shard: Shard; - features: string[]; - emojis: Emoji[]; - iconURL: string; - explicitContentFilter: number; - constructor(data: BaseData, client: Client): *; - fetchAllMembers(): void; - dynamicIconURL(format: string, size: number): string; - createChannel( - name: string, - type: string, - parentID?: string - ): Promise; - createEmoji( - options: { - name: string, - image: string, - roles?: string[] - }, - reason?: string - ): Promise; - editEmoji( - emojiID: string, - options: { - name: string, - roles?: string[] - }, - reason?: string - ): Promise; - deleteEmoji(emojiID: string, reason?: string): Promise; - createRole(options: RoleOptions, reason?: string): Promise; - getPruneCount(days: number): Promise; - pruneMembers(days: number, reason?: string): Promise; - getRESTChannels(): Promise; - getRESTEmojis(): Promise; - getRESTEmoji(emojiID: string): Promise; - getRESTMembers(limit?: number, after?: string): Promise; - getRESTMember(memberID: string): Promise; - getRESTRoles(): Promise; - getEmbed(): Promise; - getVoiceRegions(): Promise; - leaveVoiceChannel(): void; - editRole(roleID: string, options: RoleOptions): Promise; - deleteRole(roleID: string): Promise; - getAuditLogs( - limit?: number, - before?: string, - actionType?: number - ): Promise; - getIntegrations(): Promise; - editIntegration( - integrationID: string, - options: IntegrationOptions - ): Promise; - syncIntegration(integrationID: string): Promise; - deleteIntegration(integrationID: string): Promise; - getInvites(): Promise; - editMember( - memberID: string, - options: MemberOptions, - reason?: string - ): Promise; - addMemberRole( - memberID: string, - roleID: string, - reason?: string - ): Promise; - removeMemberRole( - memberID: string, - roleID: string, - reason?: string - ): Promise; - kickMember(userID: string, reason?: string): Promise; - banMember( - userID: string, - deleteMessageDays?: number, - reason?: string - ): Promise; - unbanMember(userID: string, reason?: string): Promise; - edit(options: GuildOptions, reason?: string): Promise; - delete(): Promise; - leave(): Promise; - getBans(): Promise; - editNickname(nick: string): Promise; - getWebhooks(): Promise; - } - declare export class GuildAuditLogEntry extends Base { - id: string; - guild: Guild; - actionType: number; - reason: string; - user: User; - targetID: string; - target: Guild | AnyGuildChannel | Member | Invite | Role | any; - before: any; - after: any; - count: number; - channel: AnyGuildChannel; - deleteMemberDays: number; - membersRemoved: number; - member: Member | any; - role: Role | any; - constructor(data: BaseData, guild: Guild): *; - } - declare export class GuildChannel extends Channel { - guild: Guild; - parentID: string; - name: string; - position: number; - permissionOverwrites: Collection; - nsfw: boolean; - constructor(data: BaseData, guild: Guild): *; - getInvites(): Promise; - createInvite( - options?: CreateInviteOptions, - reason?: string - ): Promise; - permissionsOf(memberID: string): Permission; - edit( - options: { - name?: string, - topic?: string, - bitrate?: number, - userLimit?: number, - nsfw?: boolean - }, - reason?: string - ): Promise; - editPosition(position: number): Promise; - delete(reason?: string): Promise; - editPermission( - overwriteID: string, - allow: number, - deny: number, - type: string, - reason?: string - ): Promise; - deletePermission(overwriteID: string, reason?: string): Promise; - } - declare export class CategoryChannel extends GuildChannel { - channels: Collection; - } - declare export class TextChannel extends GuildChannel implements Textable, Invitable { - topic: string; - lastMessageID: string; - messages: Collection; - constructor(data: BaseData, guild: Guild, messageLimit: number): *; - getInvites(): Promise; - createInvite( - options?: CreateInviteOptions, - reason?: string - ): Promise; - getWebhooks(): Promise; - createWebhook( - options: { - name: string, - avatar: string - }, - reason?: string - ): Promise; - sendTyping(): Promise; - getMessage(messageID: string): Promise; - getMessages( - limit?: number, - before?: string, - after?: string, - around?: string - ): Promise; - getPins(): Promise; - createMessage( - content: MessageContent, - file?: MessageFile - ): Promise; - editMessage(messageID: string, content: MessageContent): Promise; - pinMessage(messageID: string): Promise; - unpinMessage(messageID: string): Promise; - getMessageReaction( - messageID: string, - reaction: string, - limit?: number, - before?: string, - after?: string - ): Promise; - addMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReactions(messageID: string): Promise; - deleteMessage(messageID: string, reason?: string): Promise; - unsendMessage(messageID: string): Promise; - } - declare export class VoiceChannel extends GuildChannel implements Invitable { - bitrate: number; - userLimit: number; - voiceMembers: Collection; - join(options: VoiceResourceOptions): Promise; - leave(): void; - } - declare export class GuildIntegration extends Base { - id: string; - createdAt: number; - name: string; - type: string; - roleID: string; - user: User; - account: { - id: string, - name: string - }; - enabled: boolean; - syncing: boolean; - expireBehavior: number; - expireGracePeriod: number; - enableEmoticons: boolean; - subscriberCount: number; - syncedAt: number; - constructor(data: BaseData, guild: Guild): *; - edit(options: { - expireBehavior: string, - expireGracePeriod: string, - enableEmoticons: string - }): Promise; - delete(): Promise; - sync(): Promise; - } - declare export class Invite implements SimpleJSON { - code: string; - channel: { - id: string, - name: string - }; - guild: { - id: string, - name: string, - splash?: string, - icon?: string, - textChannelCount?: number, - voiceChannelCount?: number - }; - inviter: User; - uses: number; - maxUses: number; - maxAge: number; - temporary: boolean; - createdAt: number; - revoked: boolean; - presenceCount: number; - memberCount: number; - constructor(data: BaseData, client: Client): *; - delete(reason?: string): Promise; - toJSON(simple?: boolean): JSONCache; - } - declare export class Member extends Base { - id: string; - mention: string; - guild: Guild; - joinedAt: number; - status: string; - game: GamePresence; - voiceState: VoiceState; - nick: string; - roles: string[]; - user: User; - permission: Permission; - defaultAvatar: string; - createdAt: number; - bot: boolean; - username: string; - discriminator: string; - avatar: string; - defaultAvatarURL: string; - avatarURL: string; - staticAvatarURL: string; - constructor(data: BaseData, guild: Guild): *; - edit(options: MemberOptions, reason?: string): Promise; - addRole(roleID: string, reason?: string): Promise; - removeRole(roleID: string, reason?: string): Promise; - kick(reason?: string): Promise; - ban(deleteMessageDays?: number, reason?: string): Promise; - unban(reason?: string): Promise; - } - declare export class Message extends Base { - id: string; - createdAt: number; - channel: TextableChannel; - timestamp: number; - type: number; - author: User; - member: Member; - mentions: User[]; - content: string; - cleanContent: string; - roleMentions: string[]; - channelMentions: string[]; - editedTimestamp: number; - tts: boolean; - mentionEveryone: boolean; - attachments: Attachment[]; - embeds: Embed[]; - reactions: { - [s: string]: any, - count: number, - me: boolean - }; - prefix: string; - command: Command; - constructor(data: BaseData, client: Client): *; - edit(content: MessageContent): Promise; - pin(): Promise; - unpin(): Promise; - getReaction( - reaction: string, - limit?: number, - before?: string, - after?: string - ): Promise; - addReaction(reaction: string, userID?: string): Promise; - removeReaction(reaction: string, userID?: string): Promise; - removeReactions(): Promise; - delete(reason?: string): Promise; - } - declare export class Permission { - allow: number; - deny: number; - json: { - [s: string]: boolean - }; - constructor(allow: number, deny: number): *; - has(permission: string): boolean; - } - declare export class PermissionOverwrite extends Permission { - id: string; - createdAt: number; - type: string; - constructor(data: { - allow: number, - deny: number - }): *; - } - declare export class PrivateChannel extends Channel implements Textable { - lastMessageID: string; - recipient: User; - messages: Collection; - ring(recipient: string[]): void; - syncCall(): void; - leave(): Promise; - sendTyping(): Promise; - getMessage(messageID: string): Promise; - getMessages( - limit?: number, - before?: string, - after?: string, - around?: string - ): Promise; - getPins(): Promise; - createMessage( - content: MessageContent, - file?: MessageFile - ): Promise; - editMessage(messageID: string, content: MessageContent): Promise; - pinMessage(messageID: string): Promise; - unpinMessage(messageID: string): Promise; - getMessageReaction( - messageID: string, - reaction: string, - limit?: number, - before?: string, - after?: string - ): Promise; - addMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReactions(messageID: string): Promise; - deleteMessage(messageID: string, reason?: string): Promise; - unsendMessage(messageID: string): Promise; - } - declare export class Relationship { - id: string; - user: User; - type: number; - status: string; - game: GamePresence; - constructor(data: BaseData, client: Client): *; - } - declare export class Role extends Base { - id: string; - createdAt: number; - guild: Guild; - mention: string; - name: string; - mentionable: boolean; - managed: boolean; - hoist: boolean; - color: number; - position: number; - permissions: Permission; - json: { - [s: string]: boolean - }; - constructor(data: BaseData, guild: Guild): *; - edit(options: RoleOptions, reason?: string): Promise; - editPosition(position: number): Promise; - delete(reason?: string): Promise; - } - declare export class UnavailableGuild extends Base { - id: string; - createdAt: number; - unavailable: boolean; - shard: Shard; - constructor(data: BaseData, client: Client): *; - } - declare export class User extends Base { - id: string; - mention: string; - defaultAvatar: string; - createdAt: number; - bot: boolean; - username: string; - discriminator: string; - avatar: string; - defaultAvatarURL: string; - avatarURL: string; - staticAvatarURL: string; - constructor(data: BaseData, client: Client): *; - dynamicAvatarURL(format?: string, size?: number): string; - getDMChannel(): Promise; - addRelationship(block?: boolean): Promise; - removeRelationship(): Promise; - getProfile(): Promise; - editNote(note: string): Promise; - deleteNote(): Promise; - } - declare export class VoiceState extends Base implements NestedJSON { - id: string; - createdAt: number; - sessionID: string; - channelID: string; - mute: boolean; - deaf: boolean; - suppress: boolean; - selfMute: boolean; - selfDeaf: boolean; - constructor(data: BaseData): *; - toJSON(arg?: any, cache?: Array): JSONCache; - } - declare export class Shard extends events$EventEmitter implements SimpleJSON, Emittable { - id: number; - connecting: boolean; - ready: boolean; - discordServerTrace: string[]; - status: string; - lastHeartbeatReceived: number; - lastHeartbeatSent: number; - latency: number; - constructor(id: number, client: Client): *; - connect(): void; - disconnect(options?: { - reconnect: boolean - }): void; - editAFK(afk: boolean): void; - editStatus(status?: string, game?: GamePresence): void; - on(event: string, listener: Function): *; - on(event: "ready" | "disconnect", listener: () => void): *; - on( - event: "callCreate" | "callRing" | "callDelete", - listener: (call: Call) => void - ): *; - on( - event: "callUpdate", - listener: (call: Call, oldCall: OldCall) => void - ): *; - on( - event: "channelCreate" | "channelDelete", - listener: (channel: AnyChannel) => void - ): *; - on( - event: "channelPinUpdate", - listener: ( - channel: TextableChannel, - timestamp: number, - oldTimestamp: number - ) => void - ): *; - on( - event: "channelRecipientAdd" | "channelRecipientRemove", - listener: (channel: GroupChannel, user: User) => void - ): *; - on( - event: "channelUpdate", - listener: (channel: AnyChannel, oldChannel: OldChannel) => void - ): *; - on( - event: "friendSuggestionCreate", - listener: (user: User, reasons: FriendSuggestionReasons) => void - ): *; - on(event: "friendSuggestionDelete", listener: (user: User) => void): *; - on( - event: "guildAvailable" | "guildBanAdd" | "guildBanRemove", - listener: (guild: Guild, user: User) => void - ): *; - on( - event: "guildDelete" | "guildUnavailable" | "guildCreate", - listener: (guild: Guild) => void - ): *; - on( - event: "guildEmojisUpdate", - listener: (guild: Guild, emojis: Emoji[], oldEmojis: Emoji[]) => void - ): *; - on( - event: "guildMemberAdd", - listener: (guild: Guild, member: Member) => void - ): *; - on( - event: "guildMemberChunk", - listener: (guild: Guild, members: Member[]) => void - ): *; - on( - event: "guildMemberRemove", - listener: (guild: Guild, member: Member | MemberPartial) => void - ): *; - on( - event: "guildMemberUpdate", - listener: ( - guild: Guild, - member: Member, - oldMember: { - roles: string[], - nick?: string - } - ) => void - ): *; - on( - event: "guildRoleCreate" | "guildRoleDelete", - listener: (guild: Guild, role: Role) => void - ): *; - on( - event: "guildRoleUpdate", - listener: (guild: Guild, role: Role, oldRole: RoleOptions) => void - ): *; - on( - event: "guildUpdate", - listener: (guild: Guild, oldGuild: GuildOptions) => void - ): *; - on(event: "hello", listener: (trace: string[], id: number) => void): *; - on(event: "messageCreate", listener: (message: Message) => void): *; - on( - event: "messageDelete" | "messageReactionRemoveAll", - listener: (message: PossiblyUncachedMessage) => void - ): *; - on( - event: "messageDeleteBulk", - listener: (messages: PossiblyUncachedMessage[]) => void - ): *; - on( - event: "messageReactionAdd" | "messageReactionRemove", - listener: ( - message: PossiblyUncachedMessage, - emoji: Emoji, - userID: string - ) => void - ): *; - on( - event: "messageUpdate", - listener: ( - message: Message, - oldMessage?: { - attachments: Attachment[], - embeds: Embed[], - content: string, - editedTimestamp?: number, - mentionedBy?: any, - tts: boolean, - mentions: string[], - roleMentions: string[], - channelMentions: string[] - } - ) => void - ): *; - on( - event: "presenceUpdate", - listener: ( - other: Member | Relationship, - oldPresence?: OldPresence - ) => void - ): *; - on( - event: "rawWS" | "unknown", - listener: (packet: RawPacket, id: number) => void - ): *; - on( - event: "relationshipAdd" | "relationshipRemove", - listener: (relationship: Relationship) => void - ): *; - on( - event: "relationshipUpdate", - listener: ( - relationship: Relationship, - oldRelationship: { - type: number - } - ) => void - ): *; - on( - event: "shardPreReady" | "connect", - listener: (id: number) => void - ): *; - on( - event: "typingStart", - listener: (channel: TextableChannel, user: User) => void - ): *; - on( - event: "unavailableGuildCreate", - listener: (guild: UnavailableGuild) => void - ): *; - on( - event: "userUpdate", - listener: ( - user: User, - oldUser: { - username: string, - discriminator: string, - avatar?: string - } - ) => void - ): *; - on( - event: "voiceChannelJoin", - listener: (member: Member, newChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelLeave", - listener: (member: Member, oldChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelSwitch", - listener: ( - member: Member, - newChannel: VoiceChannel, - oldChannel: VoiceChannel - ) => void - ): *; - on( - event: "voiceStateUpdate", - listener: (member: Member, oldState: OldVoiceState) => void - ): *; - on( - event: "warn" | "debug", - listener: (message: string, id: number) => void - ): *; - on(event: "disconnect", listener: (err: Error) => void): *; - on(event: "resume", listener: () => void): *; - toJSON(simple?: boolean): JSONCache; - sendWS(op: number, _data: { [key: string]: any }): void; - } - declare export class Command { - subcommands: { - [s: string]: Command - }; - constructor( - label: string, - generate: CommandGenerator, - options?: CommandOptions - ): *; - registerSubcommandAlias(alias: string, label: string): void; - registerSubcommand( - label: string, - generator: CommandGenerator, - options?: CommandOptions - ): void; - unregisterSubcommand(label: string): void; - } - declare export class CommandClient extends Client { - commands: { - [s: string]: Command - }; - constructor( - token: string, - options?: ClientOptions, - commandOptions?: CommandClientOptions - ): *; - onMessageCreate(msg: Message): void; - registerGuildPrefix(guildID: string, prefix: string[] | string): void; - registerCommandAlias(alias: string, label: string): void; - registerCommand( - label: string, - generator: CommandGenerator, - options?: CommandOptions - ): Command; - unregisterCommand(label: string): void; - } -} diff --git a/flow-typed/next.js b/flow-typed/next.js deleted file mode 100644 index 1668fb0..0000000 --- a/flow-typed/next.js +++ /dev/null @@ -1,35 +0,0 @@ -// @flow - -declare module 'next' { - declare type NextApp = { - prepare(): Promise; - getRequestHandler(): any; - render(req: any, res: any, pathname: string, query: any): any; - renderToHTML(req: any, res: any, pathname: string, query: string): string; - renderError(err: Error, req: any, res: any, pathname: any, query: any): any; - renderErrorToHTML(err: Error, req: any, res: any, pathname: string, query: any): string; - }; - declare module.exports: (...opts: any) => NextApp -} - -declare module 'next/head' { - declare module.exports: Class>; -} - -declare module 'next/link' { - declare module.exports: Class>; -} - -declare module 'next/error' { - declare module.exports: Class>; -} - -declare module 'next/document' { - declare export var Head: Class>; - declare export var Main: Class>; - declare export var NextScript: Class>; - declare export default Class> & { - getInitialProps: (ctx: {pathname: string, query: any, req?: any, res?: any, err?: any}) => Promise; - renderPage(cb: Function): void; - }; -} diff --git a/flow-typed/npm/@babel/cli_vx.x.x.js b/flow-typed/npm/@babel/cli_vx.x.x.js deleted file mode 100644 index 95440c9..0000000 --- a/flow-typed/npm/@babel/cli_vx.x.x.js +++ /dev/null @@ -1,87 +0,0 @@ -// flow-typed signature: 2ecc7a75cc677a7dda8c3407049d06f3 -// flow-typed version: <>/@babel/cli_v^7.4.3/flow_v0.96.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-external-helpers' { - declare module.exports: any; -} - -declare module '@babel/cli/bin/babel' { - declare module.exports: any; -} - -declare module '@babel/cli/lib/babel-external-helpers' { - 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/options' { - declare module.exports: any; -} - -declare module '@babel/cli/lib/babel/util' { - declare module.exports: any; -} - -// Filename aliases -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.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-external-helpers.js' { - declare module.exports: $Exports<'@babel/cli/lib/babel-external-helpers'>; -} -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/options.js' { - declare module.exports: $Exports<'@babel/cli/lib/babel/options'>; -} -declare module '@babel/cli/lib/babel/util.js' { - declare module.exports: $Exports<'@babel/cli/lib/babel/util'>; -} diff --git a/flow-typed/npm/@babel/core_vx.x.x.js b/flow-typed/npm/@babel/core_vx.x.x.js deleted file mode 100644 index c2a6911..0000000 --- a/flow-typed/npm/@babel/core_vx.x.x.js +++ /dev/null @@ -1,298 +0,0 @@ -// flow-typed signature: f9ce5b944d6802a562649660e3c46b76 -// flow-typed version: <>/@babel/core_v^7.4.3/flow_v0.96.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/caching' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/config-chain' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/config-descriptors' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/files/configuration' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/files/index-browser' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/files/index' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/files/package' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/files/plugins' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/files/types' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/files/utils' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/full' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/helpers/config-api' { - 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/item' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/partial' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/pattern-to-regex' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/plugin' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/util' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/validation/option-assertions' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/validation/options' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/validation/plugins' { - declare module.exports: any; -} - -declare module '@babel/core/lib/config/validation/removed' { - declare module.exports: any; -} - -declare module '@babel/core/lib/index' { - declare module.exports: any; -} - -declare module '@babel/core/lib/parse' { - declare module.exports: any; -} - -declare module '@babel/core/lib/tools/build-external-helpers' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transform-ast' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transform-file-browser' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transform-file' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transform' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transformation/block-hoist-plugin' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transformation/file/file' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transformation/file/generate' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transformation/file/merge-map' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transformation/index' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transformation/normalize-file' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transformation/normalize-opts' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transformation/plugin-pass' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transformation/util/missing-plugin-helper' { - declare module.exports: any; -} - -// Filename aliases -declare module '@babel/core/lib/config/caching.js' { - declare module.exports: $Exports<'@babel/core/lib/config/caching'>; -} -declare module '@babel/core/lib/config/config-chain.js' { - declare module.exports: $Exports<'@babel/core/lib/config/config-chain'>; -} -declare module '@babel/core/lib/config/config-descriptors.js' { - declare module.exports: $Exports<'@babel/core/lib/config/config-descriptors'>; -} -declare module '@babel/core/lib/config/files/configuration.js' { - declare module.exports: $Exports<'@babel/core/lib/config/files/configuration'>; -} -declare module '@babel/core/lib/config/files/index-browser.js' { - declare module.exports: $Exports<'@babel/core/lib/config/files/index-browser'>; -} -declare module '@babel/core/lib/config/files/index.js' { - declare module.exports: $Exports<'@babel/core/lib/config/files/index'>; -} -declare module '@babel/core/lib/config/files/package.js' { - declare module.exports: $Exports<'@babel/core/lib/config/files/package'>; -} -declare module '@babel/core/lib/config/files/plugins.js' { - declare module.exports: $Exports<'@babel/core/lib/config/files/plugins'>; -} -declare module '@babel/core/lib/config/files/types.js' { - declare module.exports: $Exports<'@babel/core/lib/config/files/types'>; -} -declare module '@babel/core/lib/config/files/utils.js' { - declare module.exports: $Exports<'@babel/core/lib/config/files/utils'>; -} -declare module '@babel/core/lib/config/full.js' { - declare module.exports: $Exports<'@babel/core/lib/config/full'>; -} -declare module '@babel/core/lib/config/helpers/config-api.js' { - declare module.exports: $Exports<'@babel/core/lib/config/helpers/config-api'>; -} -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/item.js' { - declare module.exports: $Exports<'@babel/core/lib/config/item'>; -} -declare module '@babel/core/lib/config/partial.js' { - declare module.exports: $Exports<'@babel/core/lib/config/partial'>; -} -declare module '@babel/core/lib/config/pattern-to-regex.js' { - declare module.exports: $Exports<'@babel/core/lib/config/pattern-to-regex'>; -} -declare module '@babel/core/lib/config/plugin.js' { - declare module.exports: $Exports<'@babel/core/lib/config/plugin'>; -} -declare module '@babel/core/lib/config/util.js' { - declare module.exports: $Exports<'@babel/core/lib/config/util'>; -} -declare module '@babel/core/lib/config/validation/option-assertions.js' { - declare module.exports: $Exports<'@babel/core/lib/config/validation/option-assertions'>; -} -declare module '@babel/core/lib/config/validation/options.js' { - declare module.exports: $Exports<'@babel/core/lib/config/validation/options'>; -} -declare module '@babel/core/lib/config/validation/plugins.js' { - declare module.exports: $Exports<'@babel/core/lib/config/validation/plugins'>; -} -declare module '@babel/core/lib/config/validation/removed.js' { - declare module.exports: $Exports<'@babel/core/lib/config/validation/removed'>; -} -declare module '@babel/core/lib/index.js' { - declare module.exports: $Exports<'@babel/core/lib/index'>; -} -declare module '@babel/core/lib/parse.js' { - declare module.exports: $Exports<'@babel/core/lib/parse'>; -} -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/transform-ast.js' { - declare module.exports: $Exports<'@babel/core/lib/transform-ast'>; -} -declare module '@babel/core/lib/transform-file-browser.js' { - declare module.exports: $Exports<'@babel/core/lib/transform-file-browser'>; -} -declare module '@babel/core/lib/transform-file.js' { - declare module.exports: $Exports<'@babel/core/lib/transform-file'>; -} -declare module '@babel/core/lib/transform.js' { - declare module.exports: $Exports<'@babel/core/lib/transform'>; -} -declare module '@babel/core/lib/transformation/block-hoist-plugin.js' { - declare module.exports: $Exports<'@babel/core/lib/transformation/block-hoist-plugin'>; -} -declare module '@babel/core/lib/transformation/file/file.js' { - declare module.exports: $Exports<'@babel/core/lib/transformation/file/file'>; -} -declare module '@babel/core/lib/transformation/file/generate.js' { - declare module.exports: $Exports<'@babel/core/lib/transformation/file/generate'>; -} -declare module '@babel/core/lib/transformation/file/merge-map.js' { - declare module.exports: $Exports<'@babel/core/lib/transformation/file/merge-map'>; -} -declare module '@babel/core/lib/transformation/index.js' { - declare module.exports: $Exports<'@babel/core/lib/transformation/index'>; -} -declare module '@babel/core/lib/transformation/normalize-file.js' { - declare module.exports: $Exports<'@babel/core/lib/transformation/normalize-file'>; -} -declare module '@babel/core/lib/transformation/normalize-opts.js' { - declare module.exports: $Exports<'@babel/core/lib/transformation/normalize-opts'>; -} -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/util/missing-plugin-helper.js' { - declare module.exports: $Exports<'@babel/core/lib/transformation/util/missing-plugin-helper'>; -} diff --git a/flow-typed/npm/@babel/node_vx.x.x.js b/flow-typed/npm/@babel/node_vx.x.x.js deleted file mode 100644 index 17bb287..0000000 --- a/flow-typed/npm/@babel/node_vx.x.x.js +++ /dev/null @@ -1,46 +0,0 @@ -// flow-typed signature: 5d8f66090c1972993ced16f5c6ba4267 -// flow-typed version: <>/@babel/node_v^7.2.2/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@babel/node' - * - * 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/node' { - 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/node/bin/babel-node' { - declare module.exports: any; -} - -declare module '@babel/node/lib/_babel-node' { - declare module.exports: any; -} - -declare module '@babel/node/lib/babel-node' { - declare module.exports: any; -} - -// Filename aliases -declare module '@babel/node/bin/babel-node.js' { - declare module.exports: $Exports<'@babel/node/bin/babel-node'>; -} -declare module '@babel/node/lib/_babel-node.js' { - declare module.exports: $Exports<'@babel/node/lib/_babel-node'>; -} -declare module '@babel/node/lib/babel-node.js' { - declare module.exports: $Exports<'@babel/node/lib/babel-node'>; -} diff --git a/flow-typed/npm/@babel/plugin-proposal-class-properties_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-class-properties_vx.x.x.js deleted file mode 100644 index 37a9f61..0000000 --- a/flow-typed/npm/@babel/plugin-proposal-class-properties_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 6e2bcba2dbfc7e3c856b4a63b7cb236f -// flow-typed version: <>/@babel/plugin-proposal-class-properties_v^7.4.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@babel/plugin-proposal-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-proposal-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-proposal-class-properties/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module '@babel/plugin-proposal-class-properties/lib/index.js' { - declare module.exports: $Exports<'@babel/plugin-proposal-class-properties/lib/index'>; -} diff --git a/flow-typed/npm/@babel/plugin-proposal-optional-chaining_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-optional-chaining_vx.x.x.js deleted file mode 100644 index b5d51b0..0000000 --- a/flow-typed/npm/@babel/plugin-proposal-optional-chaining_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: d632091ed9fdac1cc8e92e219789192b -// flow-typed version: <>/@babel/plugin-proposal-optional-chaining_v^7.2.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@babel/plugin-proposal-optional-chaining' - * - * 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-proposal-optional-chaining' { - 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-proposal-optional-chaining/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module '@babel/plugin-proposal-optional-chaining/lib/index.js' { - declare module.exports: $Exports<'@babel/plugin-proposal-optional-chaining/lib/index'>; -} diff --git a/flow-typed/npm/@babel/plugin-syntax-dynamic-import_vx.x.x.js b/flow-typed/npm/@babel/plugin-syntax-dynamic-import_vx.x.x.js deleted file mode 100644 index 80293da..0000000 --- a/flow-typed/npm/@babel/plugin-syntax-dynamic-import_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 9f05f59645ad5270fa3905f29e58b81d -// flow-typed version: <>/@babel/plugin-syntax-dynamic-import_v^7.2.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@babel/plugin-syntax-dynamic-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 '@babel/plugin-syntax-dynamic-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 '@babel/plugin-syntax-dynamic-import/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module '@babel/plugin-syntax-dynamic-import/lib/index.js' { - declare module.exports: $Exports<'@babel/plugin-syntax-dynamic-import/lib/index'>; -} diff --git a/flow-typed/npm/@babel/plugin-transform-runtime_vx.x.x.js b/flow-typed/npm/@babel/plugin-transform-runtime_vx.x.x.js deleted file mode 100644 index 0171552..0000000 --- a/flow-typed/npm/@babel/plugin-transform-runtime_vx.x.x.js +++ /dev/null @@ -1,53 +0,0 @@ -// flow-typed signature: 489e57e1e66d02415a2265fc0ee1b2ad -// flow-typed version: <>/@babel/plugin-transform-runtime_v^7.4.3/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@babel/plugin-transform-runtime' - * - * 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-runtime' { - 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-runtime/lib/helpers' { - declare module.exports: any; -} - -declare module '@babel/plugin-transform-runtime/lib/index' { - declare module.exports: any; -} - -declare module '@babel/plugin-transform-runtime/lib/runtime-corejs2-definitions' { - declare module.exports: any; -} - -declare module '@babel/plugin-transform-runtime/lib/runtime-corejs3-definitions' { - declare module.exports: any; -} - -// Filename aliases -declare module '@babel/plugin-transform-runtime/lib/helpers.js' { - declare module.exports: $Exports<'@babel/plugin-transform-runtime/lib/helpers'>; -} -declare module '@babel/plugin-transform-runtime/lib/index.js' { - declare module.exports: $Exports<'@babel/plugin-transform-runtime/lib/index'>; -} -declare module '@babel/plugin-transform-runtime/lib/runtime-corejs2-definitions.js' { - declare module.exports: $Exports<'@babel/plugin-transform-runtime/lib/runtime-corejs2-definitions'>; -} -declare module '@babel/plugin-transform-runtime/lib/runtime-corejs3-definitions.js' { - declare module.exports: $Exports<'@babel/plugin-transform-runtime/lib/runtime-corejs3-definitions'>; -} diff --git a/flow-typed/npm/@babel/preset-env_vx.x.x.js b/flow-typed/npm/@babel/preset-env_vx.x.x.js deleted file mode 100644 index ac0eac3..0000000 --- a/flow-typed/npm/@babel/preset-env_vx.x.x.js +++ /dev/null @@ -1,200 +0,0 @@ -// flow-typed signature: c48f89dc24c96871cbe461a64bded15f -// flow-typed version: <>/@babel/preset-env_v^7.4.3/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@babel/preset-env' - * - * 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-env' { - 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-env/data/built-ins.json' { - declare module.exports: any; -} - -declare module '@babel/preset-env/data/corejs2-built-in-features' { - declare module.exports: any; -} - -declare module '@babel/preset-env/data/plugin-features' { - declare module.exports: any; -} - -declare module '@babel/preset-env/data/shipped-proposals' { - declare module.exports: any; -} - -declare module '@babel/preset-env/data/unreleased-labels' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/available-plugins' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/debug' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/filter-items' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/get-option-specific-excludes' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/index' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/module-transformations' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/normalize-options' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/options' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/polyfills/corejs2/built-in-definitions' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/polyfills/corejs2/entry-plugin' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/polyfills/corejs2/get-platform-specific-default' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/polyfills/corejs2/usage-plugin' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/polyfills/corejs3/built-in-definitions' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/polyfills/corejs3/entry-plugin' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/polyfills/corejs3/shipped-proposals' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/polyfills/corejs3/usage-plugin' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/polyfills/regenerator/entry-plugin' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/polyfills/regenerator/usage-plugin' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/targets-parser' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/utils' { - declare module.exports: any; -} - -// Filename aliases -declare module '@babel/preset-env/data/built-ins.json.js' { - declare module.exports: $Exports<'@babel/preset-env/data/built-ins.json'>; -} -declare module '@babel/preset-env/data/corejs2-built-in-features.js' { - declare module.exports: $Exports<'@babel/preset-env/data/corejs2-built-in-features'>; -} -declare module '@babel/preset-env/data/plugin-features.js' { - declare module.exports: $Exports<'@babel/preset-env/data/plugin-features'>; -} -declare module '@babel/preset-env/data/shipped-proposals.js' { - declare module.exports: $Exports<'@babel/preset-env/data/shipped-proposals'>; -} -declare module '@babel/preset-env/data/unreleased-labels.js' { - declare module.exports: $Exports<'@babel/preset-env/data/unreleased-labels'>; -} -declare module '@babel/preset-env/lib/available-plugins.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/available-plugins'>; -} -declare module '@babel/preset-env/lib/debug.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/debug'>; -} -declare module '@babel/preset-env/lib/filter-items.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/filter-items'>; -} -declare module '@babel/preset-env/lib/get-option-specific-excludes.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/get-option-specific-excludes'>; -} -declare module '@babel/preset-env/lib/index.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/index'>; -} -declare module '@babel/preset-env/lib/module-transformations.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/module-transformations'>; -} -declare module '@babel/preset-env/lib/normalize-options.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/normalize-options'>; -} -declare module '@babel/preset-env/lib/options.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/options'>; -} -declare module '@babel/preset-env/lib/polyfills/corejs2/built-in-definitions.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/built-in-definitions'>; -} -declare module '@babel/preset-env/lib/polyfills/corejs2/entry-plugin.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/entry-plugin'>; -} -declare module '@babel/preset-env/lib/polyfills/corejs2/get-platform-specific-default.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/get-platform-specific-default'>; -} -declare module '@babel/preset-env/lib/polyfills/corejs2/usage-plugin.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/usage-plugin'>; -} -declare module '@babel/preset-env/lib/polyfills/corejs3/built-in-definitions.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/built-in-definitions'>; -} -declare module '@babel/preset-env/lib/polyfills/corejs3/entry-plugin.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/entry-plugin'>; -} -declare module '@babel/preset-env/lib/polyfills/corejs3/shipped-proposals.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/shipped-proposals'>; -} -declare module '@babel/preset-env/lib/polyfills/corejs3/usage-plugin.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/usage-plugin'>; -} -declare module '@babel/preset-env/lib/polyfills/regenerator/entry-plugin.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/regenerator/entry-plugin'>; -} -declare module '@babel/preset-env/lib/polyfills/regenerator/usage-plugin.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/regenerator/usage-plugin'>; -} -declare module '@babel/preset-env/lib/targets-parser.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/targets-parser'>; -} -declare module '@babel/preset-env/lib/utils.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/utils'>; -} diff --git a/flow-typed/npm/@babel/preset-flow_vx.x.x.js b/flow-typed/npm/@babel/preset-flow_vx.x.x.js deleted file mode 100644 index 0450af4..0000000 --- a/flow-typed/npm/@babel/preset-flow_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 8f65f5a975bcf1cebc7acc6a0da81c6e -// flow-typed version: <>/@babel/preset-flow_v^7.0.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@babel/preset-flow' - * - * 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-flow' { - 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-flow/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module '@babel/preset-flow/lib/index.js' { - declare module.exports: $Exports<'@babel/preset-flow/lib/index'>; -} diff --git a/flow-typed/npm/@babel/preset-react_vx.x.x.js b/flow-typed/npm/@babel/preset-react_vx.x.x.js deleted file mode 100644 index 4097246..0000000 --- a/flow-typed/npm/@babel/preset-react_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: bc4e2309ea659005cdd86bc4ec5fdafb -// flow-typed version: <>/@babel/preset-react_v^7.0.0/flow_v0.96.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'>; -} diff --git a/flow-typed/npm/@discordjs/uws_vx.x.x.js b/flow-typed/npm/@discordjs/uws_vx.x.x.js deleted file mode 100644 index d511aeb..0000000 --- a/flow-typed/npm/@discordjs/uws_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 3c28071d58ead00dc9427f3cadc04ecb -// flow-typed version: <>/@discordjs/uws_v^11.149.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@discordjs/uws' - * - * 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 '@discordjs/uws' { - 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 '@discordjs/uws/uws' { - declare module.exports: any; -} - -// Filename aliases -declare module '@discordjs/uws/uws.js' { - declare module.exports: $Exports<'@discordjs/uws/uws'>; -} diff --git a/flow-typed/npm/@roleypoly/ui_vx.x.x.js b/flow-typed/npm/@roleypoly/ui_vx.x.x.js deleted file mode 100644 index 1d329fa..0000000 --- a/flow-typed/npm/@roleypoly/ui_vx.x.x.js +++ /dev/null @@ -1,375 +0,0 @@ -// flow-typed signature: 96e25376ad0cc98347e01eae00fc9561 -// flow-typed version: <>/@roleypoly/ui_v^2.0.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@roleypoly/ui' - * - * 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 '@roleypoly/ui' { - 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 '@roleypoly/ui/components/__test__/discord-button.test' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/__test__/discord-guild-pic.test' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/demos/tap' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/demos/typing' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/discord-button' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/discord-guild-pic' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/global-colors' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/header/auth' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/header/common' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/header/unauth' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/layout' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/logo' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/role/__test__/demo.test' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/role/__test__/Role.test' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/role/demo' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/role/index' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/role/role.styled' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/social-cards' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/components/tooltip' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/config/demo' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/config/redux' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/config/rpc' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/connector' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/containers/header-bar' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/kit/__test__/media.test' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/kit/debug-breakpoints' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/kit/media' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/lib/redirect' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/next.config' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/_app' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/_document' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/_error' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/_internal/_discordbot/_auth' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/_internal/_discordbot/_magic' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/_internal/_server_add' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/_internal/_server' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/_test/error' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/_test/landing-mock' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/auth/expired' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/auth/login' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/help/why-no-roles' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/index' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/pages/testrpc' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/rpc/index' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/setupTests' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/stores/currentServer' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/stores/roles' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/stores/servers' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/stores/user' { - declare module.exports: any; -} - -declare module '@roleypoly/ui/types' { - declare module.exports: any; -} - -// Filename aliases -declare module '@roleypoly/ui/components/__test__/discord-button.test.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/__test__/discord-button.test'>; -} -declare module '@roleypoly/ui/components/__test__/discord-guild-pic.test.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/__test__/discord-guild-pic.test'>; -} -declare module '@roleypoly/ui/components/demos/tap.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/demos/tap'>; -} -declare module '@roleypoly/ui/components/demos/typing.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/demos/typing'>; -} -declare module '@roleypoly/ui/components/discord-button.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/discord-button'>; -} -declare module '@roleypoly/ui/components/discord-guild-pic.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/discord-guild-pic'>; -} -declare module '@roleypoly/ui/components/global-colors.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/global-colors'>; -} -declare module '@roleypoly/ui/components/header/auth.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/header/auth'>; -} -declare module '@roleypoly/ui/components/header/common.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/header/common'>; -} -declare module '@roleypoly/ui/components/header/unauth.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/header/unauth'>; -} -declare module '@roleypoly/ui/components/layout.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/layout'>; -} -declare module '@roleypoly/ui/components/logo.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/logo'>; -} -declare module '@roleypoly/ui/components/role/__test__/demo.test.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/role/__test__/demo.test'>; -} -declare module '@roleypoly/ui/components/role/__test__/Role.test.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/role/__test__/Role.test'>; -} -declare module '@roleypoly/ui/components/role/demo.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/role/demo'>; -} -declare module '@roleypoly/ui/components/role/index.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/role/index'>; -} -declare module '@roleypoly/ui/components/role/role.styled.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/role/role.styled'>; -} -declare module '@roleypoly/ui/components/social-cards.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/social-cards'>; -} -declare module '@roleypoly/ui/components/tooltip.js' { - declare module.exports: $Exports<'@roleypoly/ui/components/tooltip'>; -} -declare module '@roleypoly/ui/config/demo.js' { - declare module.exports: $Exports<'@roleypoly/ui/config/demo'>; -} -declare module '@roleypoly/ui/config/redux.js' { - declare module.exports: $Exports<'@roleypoly/ui/config/redux'>; -} -declare module '@roleypoly/ui/config/rpc.js' { - declare module.exports: $Exports<'@roleypoly/ui/config/rpc'>; -} -declare module '@roleypoly/ui/connector.js' { - declare module.exports: $Exports<'@roleypoly/ui/connector'>; -} -declare module '@roleypoly/ui/containers/header-bar.js' { - declare module.exports: $Exports<'@roleypoly/ui/containers/header-bar'>; -} -declare module '@roleypoly/ui/kit/__test__/media.test.js' { - declare module.exports: $Exports<'@roleypoly/ui/kit/__test__/media.test'>; -} -declare module '@roleypoly/ui/kit/debug-breakpoints.js' { - declare module.exports: $Exports<'@roleypoly/ui/kit/debug-breakpoints'>; -} -declare module '@roleypoly/ui/kit/media.js' { - declare module.exports: $Exports<'@roleypoly/ui/kit/media'>; -} -declare module '@roleypoly/ui/lib/redirect.js' { - declare module.exports: $Exports<'@roleypoly/ui/lib/redirect'>; -} -declare module '@roleypoly/ui/next.config.js' { - declare module.exports: $Exports<'@roleypoly/ui/next.config'>; -} -declare module '@roleypoly/ui/pages/_app.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/_app'>; -} -declare module '@roleypoly/ui/pages/_document.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/_document'>; -} -declare module '@roleypoly/ui/pages/_error.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/_error'>; -} -declare module '@roleypoly/ui/pages/_internal/_discordbot/_auth.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/_internal/_discordbot/_auth'>; -} -declare module '@roleypoly/ui/pages/_internal/_discordbot/_magic.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/_internal/_discordbot/_magic'>; -} -declare module '@roleypoly/ui/pages/_internal/_server_add.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/_internal/_server_add'>; -} -declare module '@roleypoly/ui/pages/_internal/_server.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/_internal/_server'>; -} -declare module '@roleypoly/ui/pages/_test/error.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/_test/error'>; -} -declare module '@roleypoly/ui/pages/_test/landing-mock.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/_test/landing-mock'>; -} -declare module '@roleypoly/ui/pages/auth/expired.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/auth/expired'>; -} -declare module '@roleypoly/ui/pages/auth/login.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/auth/login'>; -} -declare module '@roleypoly/ui/pages/help/why-no-roles.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/help/why-no-roles'>; -} -declare module '@roleypoly/ui/pages/index.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/index'>; -} -declare module '@roleypoly/ui/pages/testrpc.js' { - declare module.exports: $Exports<'@roleypoly/ui/pages/testrpc'>; -} -declare module '@roleypoly/ui/rpc/index.js' { - declare module.exports: $Exports<'@roleypoly/ui/rpc/index'>; -} -declare module '@roleypoly/ui/setupTests.js' { - declare module.exports: $Exports<'@roleypoly/ui/setupTests'>; -} -declare module '@roleypoly/ui/stores/currentServer.js' { - declare module.exports: $Exports<'@roleypoly/ui/stores/currentServer'>; -} -declare module '@roleypoly/ui/stores/roles.js' { - declare module.exports: $Exports<'@roleypoly/ui/stores/roles'>; -} -declare module '@roleypoly/ui/stores/servers.js' { - declare module.exports: $Exports<'@roleypoly/ui/stores/servers'>; -} -declare module '@roleypoly/ui/stores/user.js' { - declare module.exports: $Exports<'@roleypoly/ui/stores/user'>; -} -declare module '@roleypoly/ui/types.js' { - declare module.exports: $Exports<'@roleypoly/ui/types'>; -} diff --git a/flow-typed/npm/async-retry_vx.x.x.js b/flow-typed/npm/async-retry_vx.x.x.js deleted file mode 100644 index fedc862..0000000 --- a/flow-typed/npm/async-retry_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: bc75aec44ae5fdc84dd56235b22e0cc9 -// flow-typed version: <>/async-retry_v^1.2.3/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'async-retry' - * - * 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 'async-retry' { - 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 'async-retry/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'async-retry/lib/index.js' { - declare module.exports: $Exports<'async-retry/lib/index'>; -} diff --git a/flow-typed/npm/await-outside_vx.x.x.js b/flow-typed/npm/await-outside_vx.x.x.js deleted file mode 100644 index 11fcea8..0000000 --- a/flow-typed/npm/await-outside_vx.x.x.js +++ /dev/null @@ -1,38 +0,0 @@ -// flow-typed signature: 8720acc61688402d711803862c45492c -// flow-typed version: <>/await-outside_v^2.1.2/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'await-outside' - * - * 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 'await-outside' { - 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 'await-outside/repl' { - declare module.exports: any; -} - -// Filename aliases -declare module 'await-outside/index' { - declare module.exports: $Exports<'await-outside'>; -} -declare module 'await-outside/index.js' { - declare module.exports: $Exports<'await-outside'>; -} -declare module 'await-outside/repl.js' { - declare module.exports: $Exports<'await-outside/repl'>; -} diff --git a/flow-typed/npm/babel-eslint_vx.x.x.js b/flow-typed/npm/babel-eslint_vx.x.x.js deleted file mode 100644 index 53c5b5a..0000000 --- a/flow-typed/npm/babel-eslint_vx.x.x.js +++ /dev/null @@ -1,109 +0,0 @@ -// flow-typed signature: 03bb20be27e0b5d1aa1965337e650c6b -// flow-typed version: <>/babel-eslint_v^10.0.1/flow_v0.96.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/lib/analyze-scope' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/babylon-to-espree/attachComments' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/babylon-to-espree/convertComments' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/babylon-to-espree/index' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/babylon-to-espree/toAST' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/babylon-to-espree/toToken' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/babylon-to-espree/toTokens' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/index' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/parse-with-scope' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/parse' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/visitor-keys' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-eslint/lib/analyze-scope.js' { - declare module.exports: $Exports<'babel-eslint/lib/analyze-scope'>; -} -declare module 'babel-eslint/lib/babylon-to-espree/attachComments.js' { - declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/attachComments'>; -} -declare module 'babel-eslint/lib/babylon-to-espree/convertComments.js' { - declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/convertComments'>; -} -declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType.js' { - declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/convertTemplateType'>; -} -declare module 'babel-eslint/lib/babylon-to-espree/index.js' { - declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/index'>; -} -declare module 'babel-eslint/lib/babylon-to-espree/toAST.js' { - declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toAST'>; -} -declare module 'babel-eslint/lib/babylon-to-espree/toToken.js' { - declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toToken'>; -} -declare module 'babel-eslint/lib/babylon-to-espree/toTokens.js' { - declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toTokens'>; -} -declare module 'babel-eslint/lib/index.js' { - declare module.exports: $Exports<'babel-eslint/lib/index'>; -} -declare module 'babel-eslint/lib/parse-with-scope.js' { - declare module.exports: $Exports<'babel-eslint/lib/parse-with-scope'>; -} -declare module 'babel-eslint/lib/parse.js' { - declare module.exports: $Exports<'babel-eslint/lib/parse'>; -} -declare module 'babel-eslint/lib/visitor-keys.js' { - declare module.exports: $Exports<'babel-eslint/lib/visitor-keys'>; -} diff --git a/flow-typed/npm/babel-jest_vx.x.x.js b/flow-typed/npm/babel-jest_vx.x.x.js deleted file mode 100644 index 5c1af94..0000000 --- a/flow-typed/npm/babel-jest_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 762c1faee0b222fa17ea8e1c33fe3f2f -// flow-typed version: <>/babel-jest_v^24.7.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-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 'babel-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 'babel-jest/build/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-jest/build/index.js' { - declare module.exports: $Exports<'babel-jest/build/index'>; -} diff --git a/flow-typed/npm/babel-plugin-styled-components_vx.x.x.js b/flow-typed/npm/babel-plugin-styled-components_vx.x.x.js deleted file mode 100644 index 1db116b..0000000 --- a/flow-typed/npm/babel-plugin-styled-components_vx.x.x.js +++ /dev/null @@ -1,130 +0,0 @@ -// flow-typed signature: 762dc1876e202de0624c5a3ce5e332ee -// flow-typed version: <>/babel-plugin-styled-components_v^1.10.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-plugin-styled-components' - * - * 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-styled-components' { - 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-styled-components/lib/css/placeholderUtils' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/index' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/minify/index' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/utils/detectors' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/utils/getName' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/utils/hash' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/utils/options' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/utils/prefixDigit' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/visitors/assignStyledRequired' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/visitors/displayNameAndId' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/visitors/minify' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/visitors/pure' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/visitors/templateLiterals/index' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/visitors/templateLiterals/transpile' { - declare module.exports: any; -} - -declare module 'babel-plugin-styled-components/lib/visitors/transpileCssProp' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-plugin-styled-components/lib/css/placeholderUtils.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/css/placeholderUtils'>; -} -declare module 'babel-plugin-styled-components/lib/index.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/index'>; -} -declare module 'babel-plugin-styled-components/lib/minify/index.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/minify/index'>; -} -declare module 'babel-plugin-styled-components/lib/utils/detectors.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/utils/detectors'>; -} -declare module 'babel-plugin-styled-components/lib/utils/getName.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/utils/getName'>; -} -declare module 'babel-plugin-styled-components/lib/utils/hash.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/utils/hash'>; -} -declare module 'babel-plugin-styled-components/lib/utils/options.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/utils/options'>; -} -declare module 'babel-plugin-styled-components/lib/utils/prefixDigit.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/utils/prefixDigit'>; -} -declare module 'babel-plugin-styled-components/lib/visitors/assignStyledRequired.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/assignStyledRequired'>; -} -declare module 'babel-plugin-styled-components/lib/visitors/displayNameAndId.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/displayNameAndId'>; -} -declare module 'babel-plugin-styled-components/lib/visitors/minify.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/minify'>; -} -declare module 'babel-plugin-styled-components/lib/visitors/pure.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/pure'>; -} -declare module 'babel-plugin-styled-components/lib/visitors/templateLiterals/index.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/templateLiterals/index'>; -} -declare module 'babel-plugin-styled-components/lib/visitors/templateLiterals/transpile.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/templateLiterals/transpile'>; -} -declare module 'babel-plugin-styled-components/lib/visitors/transpileCssProp.js' { - declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/transpileCssProp'>; -} diff --git a/flow-typed/npm/babel-plugin-transform-flow-strip-types_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-flow-strip-types_vx.x.x.js deleted file mode 100644 index b881cac..0000000 --- a/flow-typed/npm/babel-plugin-transform-flow-strip-types_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 7ad707961a09c60074833a670e7c5a83 -// flow-typed version: <>/babel-plugin-transform-flow-strip-types_v^6.22.0/flow_v0.96.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'>; -} diff --git a/flow-typed/npm/bufferutil_vx.x.x.js b/flow-typed/npm/bufferutil_vx.x.x.js deleted file mode 100644 index e930304..0000000 --- a/flow-typed/npm/bufferutil_vx.x.x.js +++ /dev/null @@ -1,38 +0,0 @@ -// flow-typed signature: a702dffd35f68a7893add59bbf83b8fb -// flow-typed version: <>/bufferutil_v^4.0.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'bufferutil' - * - * 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 'bufferutil' { - 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 'bufferutil/fallback' { - declare module.exports: any; -} - -// Filename aliases -declare module 'bufferutil/fallback.js' { - declare module.exports: $Exports<'bufferutil/fallback'>; -} -declare module 'bufferutil/index' { - declare module.exports: $Exports<'bufferutil'>; -} -declare module 'bufferutil/index.js' { - declare module.exports: $Exports<'bufferutil'>; -} diff --git a/flow-typed/npm/chalk_v2.x.x.js b/flow-typed/npm/chalk_v2.x.x.js deleted file mode 100644 index c6f23a8..0000000 --- a/flow-typed/npm/chalk_v2.x.x.js +++ /dev/null @@ -1,98 +0,0 @@ -// flow-typed signature: db5b2cdde8db39d47e27cc8ab84f89bf -// flow-typed version: d662d43161/chalk_v2.x.x/flow_>=v0.25.x - -// From: https://github.com/chalk/chalk/blob/master/index.js.flow - -declare module 'chalk' { - declare type TemplateStringsArray = $ReadOnlyArray; - - declare type Level = $Values<{ - None: 0, - Basic: 1, - Ansi256: 2, - TrueColor: 3 - }>; - - declare type ChalkOptions = {| - enabled?: boolean, - level?: Level - |}; - - declare type ColorSupport = {| - level: Level, - hasBasic: boolean, - has256: boolean, - has16m: boolean - |}; - - declare interface Chalk { - (...text: string[]): string, - (text: TemplateStringsArray, ...placeholders: string[]): string, - constructor(options?: ChalkOptions): Chalk, - enabled: boolean, - level: Level, - rgb(r: number, g: number, b: number): Chalk, - hsl(h: number, s: number, l: number): Chalk, - hsv(h: number, s: number, v: number): Chalk, - hwb(h: number, w: number, b: number): Chalk, - bgHex(color: string): Chalk, - bgKeyword(color: string): Chalk, - bgRgb(r: number, g: number, b: number): Chalk, - bgHsl(h: number, s: number, l: number): Chalk, - bgHsv(h: number, s: number, v: number): Chalk, - bgHwb(h: number, w: number, b: number): Chalk, - hex(color: string): Chalk, - keyword(color: string): Chalk, - - +reset: Chalk, - +bold: Chalk, - +dim: Chalk, - +italic: Chalk, - +underline: Chalk, - +inverse: Chalk, - +hidden: Chalk, - +strikethrough: Chalk, - - +visible: Chalk, - - +black: Chalk, - +red: Chalk, - +green: Chalk, - +yellow: Chalk, - +blue: Chalk, - +magenta: Chalk, - +cyan: Chalk, - +white: Chalk, - +gray: Chalk, - +grey: Chalk, - +blackBright: Chalk, - +redBright: Chalk, - +greenBright: Chalk, - +yellowBright: Chalk, - +blueBright: Chalk, - +magentaBright: Chalk, - +cyanBright: Chalk, - +whiteBright: Chalk, - - +bgBlack: Chalk, - +bgRed: Chalk, - +bgGreen: Chalk, - +bgYellow: Chalk, - +bgBlue: Chalk, - +bgMagenta: Chalk, - +bgCyan: Chalk, - +bgWhite: Chalk, - +bgBlackBright: Chalk, - +bgRedBright: Chalk, - +bgGreenBright: Chalk, - +bgYellowBright: Chalk, - +bgBlueBright: Chalk, - +bgMagentaBright: Chalk, - +bgCyanBright: Chalk, - +bgWhiteBrigh: Chalk, - - supportsColor: ColorSupport - } - - declare module.exports: Chalk; -} diff --git a/flow-typed/npm/chokidar_vx.x.x.js b/flow-typed/npm/chokidar_vx.x.x.js deleted file mode 100644 index d5c2484..0000000 --- a/flow-typed/npm/chokidar_vx.x.x.js +++ /dev/null @@ -1,52 +0,0 @@ -// flow-typed signature: d2dd6b4e6831834e8554fcd055fcf1ab -// flow-typed version: <>/chokidar_v2.1.2/flow_v0.95.1 - -/** - * This is an autogenerated libdef stub for: - * - * 'chokidar' - * - * 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 'chokidar' { - import type { FSWatcher } from 'fs' - import type EventEmitter from 'events' - declare type BufferEncoding = "ascii" | "utf8" | "utf16le" | "ucs2" | "base64" | "latin1" | "binary" | "hex" - declare type Chokidar = { - watch: (filename: string, options?: { encoding?: BufferEncoding; persistent?: boolean; recursive?: boolean; } | BufferEncoding, listener?: (event: string, filename: string) => void) => EventEmitter - }; - - declare module.exports: Chokidar; -} - -/** - * 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 'chokidar/lib/fsevents-handler' { - declare module.exports: any; -} - -declare module 'chokidar/lib/nodefs-handler' { - declare module.exports: any; -} - -// Filename aliases -declare module 'chokidar/index' { - declare module.exports: $Exports<'chokidar'>; -} -declare module 'chokidar/index.js' { - declare module.exports: $Exports<'chokidar'>; -} -declare module 'chokidar/lib/fsevents-handler.js' { - declare module.exports: $Exports<'chokidar/lib/fsevents-handler'>; -} -declare module 'chokidar/lib/nodefs-handler.js' { - declare module.exports: $Exports<'chokidar/lib/nodefs-handler'>; -} diff --git a/flow-typed/npm/color_vx.x.x.js b/flow-typed/npm/color_vx.x.x.js deleted file mode 100644 index d9c22b2..0000000 --- a/flow-typed/npm/color_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 96816851f91a21f2f9741343c162ccf0 -// flow-typed version: <>/color_v^3.1.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * '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 '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. - */ - -// Filename aliases -declare module 'color/index' { - declare module.exports: $Exports<'color'>; -} -declare module 'color/index.js' { - declare module.exports: $Exports<'color'>; -} diff --git a/flow-typed/npm/dotenv_vx.x.x.js b/flow-typed/npm/dotenv_vx.x.x.js deleted file mode 100644 index 7f22487..0000000 --- a/flow-typed/npm/dotenv_vx.x.x.js +++ /dev/null @@ -1,53 +0,0 @@ -// flow-typed signature: caf3f0e2c38724e409492d77a58a5080 -// flow-typed version: <>/dotenv_v^7.0.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'dotenv' - * - * 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 'dotenv' { - 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 'dotenv/config' { - declare module.exports: any; -} - -declare module 'dotenv/lib/cli-options' { - declare module.exports: any; -} - -declare module 'dotenv/lib/env-options' { - declare module.exports: any; -} - -declare module 'dotenv/lib/main' { - declare module.exports: any; -} - -// Filename aliases -declare module 'dotenv/config.js' { - declare module.exports: $Exports<'dotenv/config'>; -} -declare module 'dotenv/lib/cli-options.js' { - declare module.exports: $Exports<'dotenv/lib/cli-options'>; -} -declare module 'dotenv/lib/env-options.js' { - declare module.exports: $Exports<'dotenv/lib/env-options'>; -} -declare module 'dotenv/lib/main.js' { - declare module.exports: $Exports<'dotenv/lib/main'>; -} diff --git a/flow-typed/npm/enzyme-adapter-react-16_vx.x.x.js b/flow-typed/npm/enzyme-adapter-react-16_vx.x.x.js deleted file mode 100644 index 103fa85..0000000 --- a/flow-typed/npm/enzyme-adapter-react-16_vx.x.x.js +++ /dev/null @@ -1,81 +0,0 @@ -// flow-typed signature: 7a4ce8257d745ddee5ef466f19a4d40e -// flow-typed version: <>/enzyme-adapter-react-16_v^1.11.2/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'enzyme-adapter-react-16' - * - * 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 'enzyme-adapter-react-16' { - 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 'enzyme-adapter-react-16/build/detectFiberTags' { - declare module.exports: any; -} - -declare module 'enzyme-adapter-react-16/build/findCurrentFiberUsingSlowPath' { - declare module.exports: any; -} - -declare module 'enzyme-adapter-react-16/build/index' { - declare module.exports: any; -} - -declare module 'enzyme-adapter-react-16/build/ReactSixteenAdapter' { - declare module.exports: any; -} - -declare module 'enzyme-adapter-react-16/src/detectFiberTags' { - declare module.exports: any; -} - -declare module 'enzyme-adapter-react-16/src/findCurrentFiberUsingSlowPath' { - declare module.exports: any; -} - -declare module 'enzyme-adapter-react-16/src/index' { - declare module.exports: any; -} - -declare module 'enzyme-adapter-react-16/src/ReactSixteenAdapter' { - declare module.exports: any; -} - -// Filename aliases -declare module 'enzyme-adapter-react-16/build/detectFiberTags.js' { - declare module.exports: $Exports<'enzyme-adapter-react-16/build/detectFiberTags'>; -} -declare module 'enzyme-adapter-react-16/build/findCurrentFiberUsingSlowPath.js' { - declare module.exports: $Exports<'enzyme-adapter-react-16/build/findCurrentFiberUsingSlowPath'>; -} -declare module 'enzyme-adapter-react-16/build/index.js' { - declare module.exports: $Exports<'enzyme-adapter-react-16/build/index'>; -} -declare module 'enzyme-adapter-react-16/build/ReactSixteenAdapter.js' { - declare module.exports: $Exports<'enzyme-adapter-react-16/build/ReactSixteenAdapter'>; -} -declare module 'enzyme-adapter-react-16/src/detectFiberTags.js' { - declare module.exports: $Exports<'enzyme-adapter-react-16/src/detectFiberTags'>; -} -declare module 'enzyme-adapter-react-16/src/findCurrentFiberUsingSlowPath.js' { - declare module.exports: $Exports<'enzyme-adapter-react-16/src/findCurrentFiberUsingSlowPath'>; -} -declare module 'enzyme-adapter-react-16/src/index.js' { - declare module.exports: $Exports<'enzyme-adapter-react-16/src/index'>; -} -declare module 'enzyme-adapter-react-16/src/ReactSixteenAdapter.js' { - declare module.exports: $Exports<'enzyme-adapter-react-16/src/ReactSixteenAdapter'>; -} diff --git a/flow-typed/npm/enzyme-to-json_vx.x.x.js b/flow-typed/npm/enzyme-to-json_vx.x.x.js deleted file mode 100644 index 8909a7d..0000000 --- a/flow-typed/npm/enzyme-to-json_vx.x.x.js +++ /dev/null @@ -1,73 +0,0 @@ -// flow-typed signature: e171aee9f22d1c3e6741f5870c2b069f -// flow-typed version: <>/enzyme-to-json_v^3.3.5/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'enzyme-to-json' - * - * 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 'enzyme-to-json' { - 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 'enzyme-to-json/createSerializer' { - declare module.exports: any; -} - -declare module 'enzyme-to-json/mount' { - declare module.exports: any; -} - -declare module 'enzyme-to-json/render' { - declare module.exports: any; -} - -declare module 'enzyme-to-json/serializer' { - declare module.exports: any; -} - -declare module 'enzyme-to-json/shallow' { - declare module.exports: any; -} - -declare module 'enzyme-to-json/utils' { - declare module.exports: any; -} - -// Filename aliases -declare module 'enzyme-to-json/createSerializer.js' { - declare module.exports: $Exports<'enzyme-to-json/createSerializer'>; -} -declare module 'enzyme-to-json/index' { - declare module.exports: $Exports<'enzyme-to-json'>; -} -declare module 'enzyme-to-json/index.js' { - declare module.exports: $Exports<'enzyme-to-json'>; -} -declare module 'enzyme-to-json/mount.js' { - declare module.exports: $Exports<'enzyme-to-json/mount'>; -} -declare module 'enzyme-to-json/render.js' { - declare module.exports: $Exports<'enzyme-to-json/render'>; -} -declare module 'enzyme-to-json/serializer.js' { - declare module.exports: $Exports<'enzyme-to-json/serializer'>; -} -declare module 'enzyme-to-json/shallow.js' { - declare module.exports: $Exports<'enzyme-to-json/shallow'>; -} -declare module 'enzyme-to-json/utils.js' { - declare module.exports: $Exports<'enzyme-to-json/utils'>; -} diff --git a/flow-typed/npm/enzyme_v3.x.x.js b/flow-typed/npm/enzyme_v3.x.x.js deleted file mode 100644 index a46f451..0000000 --- a/flow-typed/npm/enzyme_v3.x.x.js +++ /dev/null @@ -1,135 +0,0 @@ -// flow-typed signature: f6bad512110ebc6da85b1ddda297fe3d -// flow-typed version: f04d291d8b/enzyme_v3.x.x/flow_>=v0.53.x - -declare module 'enzyme' { - declare type PredicateFunction> = ( - wrapper: T, - index: number - ) => boolean; - declare type UntypedSelector = string | {[key: string]: number|string|boolean}; - declare type EnzymeSelector = UntypedSelector | React$ElementType; - - // CheerioWrapper is a type alias for an actual cheerio instance - // TODO: Reference correct type from cheerio's type declarations - declare type CheerioWrapper = any; - - declare class Wrapper { - equals(node: React$Element): boolean, - find(selector: UntypedSelector): this, - find(selector: T): ReactWrapper, - findWhere(predicate: PredicateFunction): this, - filter(selector: UntypedSelector): this, - filter(selector: T): ReactWrapper, - filterWhere(predicate: PredicateFunction): this, - hostNodes(): this, - contains(nodes: React$Node): boolean, - containsMatchingElement(node: React$Node): boolean, - containsAllMatchingElements(nodes: React$Node): boolean, - containsAnyMatchingElements(nodes: React$Node): boolean, - dive(option?: { context?: Object }): this, - exists(selector?: EnzymeSelector): boolean, - isEmptyRender(): boolean, - matchesElement(node: React$Node): boolean, - hasClass(className: string): boolean, - is(selector: EnzymeSelector): boolean, - isEmpty(): boolean, - not(selector: EnzymeSelector): this, - children(selector?: UntypedSelector): this, - children(selector: T): ReactWrapper, - childAt(index: number): this, - parents(selector?: UntypedSelector): this, - parents(selector: T): ReactWrapper, - parent(): this, - closest(selector: UntypedSelector): this, - closest(selector: T): ReactWrapper, - render(): CheerioWrapper, - renderProp(propName: string): (...args: Array) => this, - unmount(): this, - text(): string, - html(): string, - get(index: number): React$Node, - getDOMNode(): HTMLElement | HTMLInputElement, - at(index: number): this, - first(): this, - last(): this, - state(key?: string): any, - context(key?: string): any, - props(): Object, - prop(key: string): any, - key(): string, - simulate(event: string, ...args: Array): this, - simulateError(error: Error): this, - slice(begin?: number, end?: number): this, - setState(state: {}, callback?: () => void): this, - setProps(props: {}, callback?: () => void): this, - setContext(context: Object): this, - instance(): React$ElementRef, - update(): this, - debug(options?: Object): string, - type(): string | Function | null, - name(): string, - forEach(fn: (node: this, index: number) => mixed): this, - map(fn: (node: this, index: number) => T): Array, - reduce( - fn: (value: T, node: this, index: number) => T, - initialValue?: T - ): Array, - reduceRight( - fn: (value: T, node: this, index: number) => T, - initialValue?: T - ): Array, - some(selector: EnzymeSelector): boolean, - someWhere(predicate: PredicateFunction): boolean, - every(selector: EnzymeSelector): boolean, - everyWhere(predicate: PredicateFunction): boolean, - length: number - } - - declare class ReactWrapper extends Wrapper { - constructor(nodes: React$Element, root: any, options?: ?Object): ReactWrapper, - mount(): this, - ref(refName: string): this, - detach(): void - } - - declare class ShallowWrapper extends Wrapper { - constructor( - nodes: React$Element, - root: any, - options?: ?Object - ): ShallowWrapper, - equals(node: React$Node): boolean, - shallow(options?: { context?: Object }): ShallowWrapper, - getElement(): React$Node, - getElements(): Array - } - - declare function shallow( - node: React$Element, - options?: { context?: Object, disableLifecycleMethods?: boolean } - ): ShallowWrapper; - declare function mount( - node: React$Element, - options?: { - context?: Object, - attachTo?: HTMLElement, - childContextTypes?: Object - } - ): ReactWrapper; - declare function render( - node: React$Element, - options?: { context?: Object } - ): CheerioWrapper; - - declare module.exports: { - configure(options: { - Adapter?: any, - disableLifecycleMethods?: boolean - }): void, - render: typeof render, - mount: typeof mount, - shallow: typeof shallow, - ShallowWrapper: typeof ShallowWrapper, - ReactWrapper: typeof ReactWrapper - }; -} diff --git a/flow-typed/npm/eris_vx.x.x.js b/flow-typed/npm/eris_vx.x.x.js deleted file mode 100644 index 8bac3a3..0000000 --- a/flow-typed/npm/eris_vx.x.x.js +++ /dev/null @@ -1,2229 +0,0 @@ -// @flow -/** - * Flowtype definitions for eris - * Generated by Flowgen from a Typescript Definition - * Flowgen v1.8.0 - * Author: [Katalina T.](http://twitter.com/kayteh) - * Repo: http://github.com/kayteh/roleypoly - */ - -declare module 'eris' { - import type EventEmitter from 'events' - - import type { Readable as ReadableStream } from 'stream' - - declare interface JSONCache { - [s: string]: any; - } - declare interface SimpleJSON { - toJSON(simple?: boolean): JSONCache; - } - declare interface NestedJSON { - toJSON(arg?: any, cache?: Array): JSONCache; - } - declare type TextableChannel = TextChannel | PrivateChannel | GroupChannel; - declare type AnyChannel = - | TextChannel - | VoiceChannel - | CategoryChannel - | PrivateChannel - | GroupChannel; - declare type AnyGuildChannel = TextChannel | VoiceChannel | CategoryChannel; - declare interface CreateInviteOptions { - maxAge?: number; - maxUses?: number; - temporary?: boolean; - } - declare interface Invitable { - getInvites(): Promise; - createInvite( - options?: CreateInviteOptions, - reason?: string - ): Promise; - } - declare interface Textable { - lastMessageID: string; - messages: Collection; - sendTyping(): Promise; - getMessage(messageID: string): Promise; - getMessages( - limit?: number, - before?: string, - after?: string, - around?: string - ): Promise; - getPins(): Promise; - createMessage( - content: MessageContent, - file?: MessageFile - ): Promise; - editMessage(messageID: string, content: MessageContent): Promise; - pinMessage(messageID: string): Promise; - unpinMessage(messageID: string): Promise; - getMessageReaction( - messageID: string, - reaction: string, - limit?: number, - before?: string, - after?: string - ): Promise; - addMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReactions(messageID: string): Promise; - deleteMessage(messageID: string, reason?: string): Promise; - unsendMessage(messageID: string): Promise; - } - declare interface OldCall { - participants: string[]; - endedTimestamp?: number; - ringing: string[]; - region: string; - unavailable: boolean; - } - declare interface OldChannel { - name: string; - position: string; - topic?: string; - bitrate?: number; - permissionOverwrites: Collection; - } - declare type FriendSuggestionReasons = Array<{ - type: number, - platform_type: string, - name: string - }>; - declare interface MemberPartial { - id: string; - user: User; - } - declare interface OldPresence { - status: string; - game?: { - name: string, - type: number, - url?: string - }; - } - declare interface OldVoiceState { - mute: boolean; - deaf: boolean; - selfMute: boolean; - selfDeaf: boolean; - } - declare interface Emittable { - on(event: string, listener: Function): *; - on(event: "ready" | "disconnect", listener: () => void): *; - on( - event: "callCreate" | "callRing" | "callDelete", - listener: (call: Call) => void - ): *; - on( - event: "callUpdate", - listener: (call: Call, oldCall: OldCall) => void - ): *; - on( - event: "channelCreate" | "channelDelete", - listener: (channel: AnyChannel) => void - ): *; - on( - event: "channelPinUpdate", - listener: ( - channel: TextableChannel, - timestamp: number, - oldTimestamp: number - ) => void - ): *; - on( - event: "channelRecipientAdd" | "channelRecipientRemove", - listener: (channel: GroupChannel, user: User) => void - ): *; - on( - event: "channelUpdate", - listener: (channel: AnyChannel, oldChannel: OldChannel) => void - ): *; - on( - event: "friendSuggestionCreate", - listener: (user: User, reasons: FriendSuggestionReasons) => void - ): *; - on(event: "friendSuggestionDelete", listener: (user: User) => void): *; - on( - event: "guildAvailable" | "guildBanAdd" | "guildBanRemove", - listener: (guild: Guild, user: User) => void - ): *; - on( - event: "guildDelete" | "guildUnavailable" | "guildCreate", - listener: (guild: Guild) => void - ): *; - on( - event: "guildEmojisUpdate", - listener: (guild: Guild, emojis: Emoji[], oldEmojis: Emoji[]) => void - ): *; - on( - event: "guildMemberAdd", - listener: (guild: Guild, member: Member) => void - ): *; - on( - event: "guildMemberChunk", - listener: (guild: Guild, members: Member[]) => void - ): *; - on( - event: "guildMemberRemove", - listener: (guild: Guild, member: Member | MemberPartial) => void - ): *; - on( - event: "guildMemberUpdate", - listener: ( - guild: Guild, - member: Member, - oldMember: { - roles: string[], - nick?: string - } - ) => void - ): *; - on( - event: "guildRoleCreate" | "guildRoleDelete", - listener: (guild: Guild, role: Role) => void - ): *; - on( - event: "guildRoleUpdate", - listener: (guild: Guild, role: Role, oldRole: RoleOptions) => void - ): *; - on( - event: "guildUpdate", - listener: (guild: Guild, oldGuild: GuildOptions) => void - ): *; - on(event: "hello", listener: (trace: string[], id: number) => void): *; - on(event: "messageCreate", listener: (message: Message) => void): *; - on( - event: "messageDelete" | "messageReactionRemoveAll", - listener: (message: PossiblyUncachedMessage) => void - ): *; - on( - event: "messageDeleteBulk", - listener: (messages: PossiblyUncachedMessage[]) => void - ): *; - on( - event: "messageReactionAdd" | "messageReactionRemove", - listener: ( - message: PossiblyUncachedMessage, - emoji: Emoji, - userID: string - ) => void - ): *; - on( - event: "messageUpdate", - listener: ( - message: Message, - oldMessage?: { - attachments: Attachment[], - embeds: Embed[], - content: string, - editedTimestamp?: number, - mentionedBy?: any, - tts: boolean, - mentions: string[], - roleMentions: string[], - channelMentions: string[] - } - ) => void - ): *; - on( - event: "presenceUpdate", - listener: ( - other: Member | Relationship, - oldPresence?: OldPresence - ) => void - ): *; - on( - event: "rawWS" | "unknown", - listener: (packet: RawPacket, id: number) => void - ): *; - on( - event: "relationshipAdd" | "relationshipRemove", - listener: (relationship: Relationship) => void - ): *; - on( - event: "relationshipUpdate", - listener: ( - relationship: Relationship, - oldRelationship: { - type: number - } - ) => void - ): *; - on( - event: "shardPreReady" | "connect", - listener: (id: number) => void - ): *; - on( - event: "typingStart", - listener: (channel: TextableChannel, user: User) => void - ): *; - on( - event: "unavailableGuildCreate", - listener: (guild: UnavailableGuild) => void - ): *; - on( - event: "userUpdate", - listener: ( - user: User, - oldUser: { - username: string, - discriminator: string, - avatar?: string - } - ) => void - ): *; - on( - event: "voiceChannelJoin", - listener: (member: Member, newChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelLeave", - listener: (member: Member, oldChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelSwitch", - listener: ( - member: Member, - newChannel: VoiceChannel, - oldChannel: VoiceChannel - ) => void - ): *; - on( - event: "voiceStateUpdate", - listener: (member: Member, oldState: OldVoiceState) => void - ): *; - on( - event: "warn" | "debug", - listener: (message: string, id: number) => void - ): *; - } - declare interface IConstants { - DefaultAvatarHashes: string[]; - ImageFormats: string[]; - GatewayOPCodes: { - [key: string]: number - }; - GATEWAY_VERSION: number; - Permissions: { - [key: string]: number - }; - VoiceOPCodes: { - [key: string]: number - }; - SystemJoinMessages: string[]; - AuditLogActions: { - [key: string]: number - }; - } - declare export var Constants: IConstants; - declare interface WebhookPayload { - content?: string; - file?: - | { - file: Buffer, - name: string - } - | Array<{ - file: Buffer, - name: string - }>; - embeds?: EmbedOptions[]; - username?: string; - avatarURL?: string; - tts?: boolean; - wait?: boolean; - disableEveryone?: boolean; - } - declare interface EmbedBase { - title?: string; - description?: string; - url?: string; - timestamp?: string; - color?: number; - footer?: { - text: string, - icon_url?: string, - proxy_icon_url?: string - }; - image?: { - url?: string, - proxy_url?: string, - height?: number, - width?: number - }; - thumbnail?: { - url?: string, - proxy_url?: string, - height?: number, - width?: number - }; - video?: { - url: string, - height?: number, - width?: number - }; - provider?: { - name: string, - url?: string - }; - fields?: Array<{ - name?: string, - value?: string, - inline?: boolean - }>; - author?: { - name: string, - url?: string, - icon_url?: string, - proxy_icon_url?: string - }; - } - declare type Embed = { - type: string - } & EmbedBase; - declare type EmbedOptions = { - type?: string - } & EmbedBase; - declare interface Webhook { - name: string; - channel_id: string; - token: string; - avatar?: string; - guild_id: string; - id: string; - user: { - username: string, - discriminator: string, - id: string, - avatar?: string - }; - } - declare interface GuildEmbed { - channel_id?: string; - enabled: boolean; - } - declare interface Attachment { - url: string; - proxy_url: string; - size: number; - id: string; - filename: string; - } - declare interface VoiceRegion { - name: string; - deprecated: boolean; - custom: boolean; - vip: boolean; - optimal: boolean; - id: string; - } - declare interface UserSettings { - theme: string; - status: string; - show_current_game: boolean; - restricted_guilds: string[]; - render_reactions: boolean; - render_embeds: boolean; - message_display_compact: boolean; - locale: string; - inline_embed_media: boolean; - inline_attachment_media: boolean; - guild_positions: string[]; - friend_source_flags: { - all: boolean - }; - explicit_content_filter: number; - enable_tts_command: boolean; - developer_mode: boolean; - detect_platform_accounts: boolean; - default_guilds_restricted: boolean; - convert_emojis: boolean; - afk_timeout: number; - } - declare interface GuildSettings { - suppress_everyone: boolean; - muted: boolean; - mobile_push: boolean; - message_notifications: number; - guild_id: string; - channel_override: Array<{ - muted: boolean, - message_notifications: number, - channel_id: string - }>; - } - declare interface UserProfile { - premium_since?: number; - mutual_guilds: Array<{ - nick?: string, - id: string - }>; - user: { - username: string, - discriminator: string, - flags: number, - id: string, - avatar?: string - }; - connected_accounts: Array<{ - verified: boolean, - type: string, - id: string, - name: string - }>; - } - declare interface Connection { - verified: boolean; - revoked: boolean; - integrations: any[]; - visibility: number; - friend_sync: boolean; - type: string; - id: string; - name: string; - } - declare interface GuildAuditLog { - users: User[]; - entries: GuildAuditLogEntry[]; - } - declare interface BaseData { - id: string; - [key: string]: {}; - } - declare type MessageContent = - | string - | { - content?: string, - tts?: boolean, - disableEveryone?: boolean, - embed?: EmbedOptions - }; - declare interface MessageFile { - file: Buffer | string; - name: string; - } - declare interface EmojiBase { - name: string; - icon?: string; - } - declare type EmojiOptions = { - roles?: string[] - } & EmojiBase; - declare type Emoji = { - roles: string[] - } & EmojiBase; - declare interface IntegrationOptions { - expireBehavior: string; - expireGracePeriod: string; - enableEmoticons: string; - } - declare interface GuildOptions { - name?: string; - region?: string; - icon?: string; - verificationLevel?: number; - defaultNotifications?: number; - afkChannelID?: string; - afkTimeout?: number; - ownerID?: string; - splash?: string; - } - declare interface MemberOptions { - roles?: string[]; - nick?: string; - mute?: boolean; - deaf?: boolean; - channelID?: string; - } - declare interface RoleOptions { - name?: string; - permissions?: number; - color?: number; - hoist?: boolean; - mentionable?: boolean; - } - declare interface GamePresence { - name: string; - type?: number; - url?: string; - } - declare interface SearchOptions { - sortBy?: string; - sortOrder?: string; - content?: string; - authorID?: string; - minID?: string; - maxID?: string; - limit?: number; - offset?: number; - contextSize?: number; - has?: string; - embedProviders?: string; - embedTypes?: string; - attachmentExtensions?: string; - attachmentFilename?: string; - channelIDs: string[]; - } - declare interface SearchResults { - totalResults: number; - results: Array< - Array< - Message & { - hit?: boolean - } - > - >; - } - declare interface VoiceResourceOptions { - inlineVolume?: boolean; - voiceDataTimeout?: number; - inputArgs?: string[]; - encoderArgs?: string[]; - format?: string; - frameDuration?: number; - frameSize?: number; - sampleRate?: number; - } - declare type PossiblyUncachedMessage = - | Message - | { - id: string, - channel: TextableChannel - }; - declare interface RawPacket { - op: number; - t?: string; - d?: any; - s?: number; - } - declare type ClientOptions = $Shape<{ - autoreconnect: boolean; - compress: boolean; - connectionTimeout: number; - disableEvents: { - [s: string]: boolean - }; - disableEveryone: boolean; - firstShardID: number; - getAllUsers: boolean; - guildCreateTimeout: number; - largeThreshold: number; - lastShardID: number; - maxShards: number | "auto"; - messageLimit: number; - opusOnly: boolean; - restMode: boolean; - seedVoiceConnections: boolean; - defaultImageFormat: string; - defaultImageSize: number; - ws: any; - latencyThreshold: number; - }> - declare type CommandClientOptions = $Shape<{ - defaultHelpCommand: boolean; - description: string; - ignoreBots: boolean; - ignoreSelf: boolean; - name: string; - owner: string; - prefix: string | string[]; - defaultCommandOptions: CommandOptions; - }> - declare interface Hooks { - preCommand?: (msg: Message, args: string[]) => void; - postCheck?: (msg: Message, args: string[], checksPassed: boolean) => void; - postExecution?: ( - msg: Message, - args: string[], - executionSuccess: boolean - ) => void; - postCommand?: (msg: Message, args: string[], sent?: Message) => void; - } - declare type GenericCheckFunction = (msg: Message) => T; - declare type CommandOptions = $Shape<{ - aliases?: string[]; - caseInsensitive?: boolean; - deleteCommand?: boolean; - argsRequired?: boolean; - guildOnly?: boolean; - dmOnly?: boolean; - description?: string; - fullDescription?: string; - usage?: string; - hooks?: Hooks; - requirements?: { - userIDs?: string[] | GenericCheckFunction, - roleIDs?: string[] | GenericCheckFunction, - roleNames?: string[] | GenericCheckFunction, - permissions?: - | { - [s: string]: boolean - } - | GenericCheckFunction<{ - [s: string]: boolean - }>, - custom?: GenericCheckFunction - }; - cooldown?: number; - cooldownExclusions?: { - userIDs?: string[], - guildIDs?: string[], - channelIDs?: string[] - }; - restartCooldown?: boolean; - cooldownReturns?: number; - cooldownMessage?: string | GenericCheckFunction; - invalidUsageMessage?: string | GenericCheckFunction; - permissionMessage?: string | GenericCheckFunction; - errorMessage?: string | GenericCheckFunction; - reactionButtons?: Array<{ - emoji: string, - type: string, - response: CommandGenerator - }>; - reactionButtonTimeout?: number; - defaultSubcommandOptions?: CommandOptions; - hidden?: boolean; - }> - declare type CommandGeneratorFunction = ( - msg: Message, - args: string[] - ) => Promise | Promise | MessageContent | void; - declare type CommandGenerator = - | CommandGeneratorFunction - | MessageContent - | MessageContent[] - | CommandGeneratorFunction[]; - declare export class ShardManager extends Collection { - constructor(client: Client): *; - connect(shard: Shard): void; - spawn(id: number): void; - toJSON(): string; - } - declare export default class Client extends events$EventEmitter implements SimpleJSON, Emittable { - token: string; - gatewayURL: string; - bot: boolean; - options: ClientOptions; - channelGuildMap: { - [s: string]: string - }; - shards: ShardManager; - guilds: Collection; - privateChannelMap: { - [s: string]: string - }; - privateChannels: Collection; - groupChannels: Collection; - voiceConnections: Collection; - guildShardMap: { - [s: string]: number - }; - startTime: number; - unavailableGuilds: Collection; - uptime: number; - user: ExtendedUser; - users: Collection; - relationships: Collection; - userGuildSettings: { - [s: string]: GuildSettings - }; - userSettings: UserSettings; - notes: { - [s: string]: string - }; - constructor(token: string, options?: ClientOptions): *; - connect(): Promise; - getGateway(): Promise; - getBotGateway(): Promise<{ - url: string, - shards: number - }>; - disconnect(options: { - reconnect: boolean - }): void; - joinVoiceChannel( - channelID: string, - options?: { - shared?: boolean, - opusOnly?: boolean - } - ): Promise; - leaveVoiceChannel(channelID: string): void; - closeVoiceConnection(guildID: string): void; - editAFK(afk: boolean): void; - editStatus(status?: string, game?: GamePresence): void; - getChannel(channelID: string): AnyChannel; - createChannel( - guildID: string, - name: string, - type?: number, - reason?: string, - parentID?: string - ): Promise; - editChannel( - channelID: string, - options: { - name?: string, - icon?: string, - ownerID?: string, - topic?: string, - bitrate?: number, - userLimit?: number, - nsfw?: boolean, - parentID?: string - }, - reason?: string - ): Promise; - editChannelPosition(channelID: string, position: number): Promise; - deleteChannel(channelID: string, reason?: string): Promise; - sendChannelTyping(channelID: string): Promise; - editChannelPermission( - channelID: string, - overwriteID: string, - allow: number, - deny: number, - type: string, - reason?: string - ): Promise; - deleteChannelPermission( - channelID: string, - overwriteID: string, - reason?: string - ): Promise; - getChannelInvites(channelID: string): Promise; - createChannelInvite( - channelID: string, - options?: { - maxAge?: number, - maxUses?: number, - temporary?: boolean, - unique?: boolean - }, - reason?: string - ): Promise; - getChannelWebhooks(channelID: string): Promise; - getWebhook(webhookID: string, token?: string): Promise; - createChannelWebhook( - channelID: string, - options: { - name: string, - avatar: string - }, - reason?: string - ): Promise; - editWebhook( - webhookID: string, - options: { - name?: string, - avatar?: string - }, - token?: string, - reason?: string - ): Promise; - executeWebhook( - webhookID: string, - token: string, - options: WebhookPayload - ): Promise; - executeSlackWebhook( - webhookID: string, - token: string, - options?: { - wait?: boolean - } - ): Promise; - deleteWebhook( - webhookID: string, - token?: string, - reason?: string - ): Promise; - getGuildWebhooks(guildID: string): Promise; - getGuildAuditLogs( - guildID: string, - limit?: number, - before?: string, - actionType?: number - ): Promise; - createGuildEmoji( - guildID: string, - options: EmojiOptions, - reason?: string - ): Promise; - editGuildEmoji( - guildID: string, - emojiID: string, - options: { - name?: string, - roles?: string[] - }, - reason?: string - ): Promise; - deleteGuildEmoji( - guildID: string, - emojiID: string, - reason?: string - ): Promise; - createRole( - guildID: string, - options?: RoleOptions, - reason?: string - ): Promise; - editRole( - guildID: string, - roleID: string, - options: RoleOptions, - reason?: string - ): Promise; - editRolePosition( - guildID: string, - roleID: string, - position: number - ): Promise; - deleteRole(guildID: string, roleID: string, reason?: string): Promise; - getPruneCount(guildID: string, days: number): Promise; - pruneMembers( - guildID: string, - days: number, - reason?: string - ): Promise; - getVoiceRegions(guildID: string): Promise; - getInvite(inviteID: string, withCounts?: boolean): Promise; - acceptInvite(inviteID: string): Promise; - deleteInvite(inviteID: string, reason?: string): Promise; - getSelf(): Promise; - editSelf(options: { - username?: string, - avatar?: string - }): Promise; - getDMChannel(userID: string): Promise; - createGroupChannel(userIDs: string[]): Promise; - getMessage(channelID: string, messageID: string): Promise; - getMessages( - channelID: string, - limit?: number, - before?: string, - after?: string, - around?: string - ): Promise; - getPins(channelID: string): Promise; - createMessage( - channelID: string, - content: MessageContent, - file?: MessageFile - ): Promise; - editMessage( - channelID: string, - messageID: string, - content: MessageContent - ): Promise; - pinMessage(channelID: string, messageID: string): Promise; - unpinMessage(channelID: string, messageID: string): Promise; - getMessageReaction( - channelID: string, - messageID: string, - reaction: string, - limit?: number, - before?: string, - after?: string - ): Promise; - addMessageReaction( - channelID: string, - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReaction( - channelID: string, - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReactions(channelID: string, messageID: string): Promise; - deleteMessage( - channelID: string, - messageID: string, - reason?: string - ): Promise; - deleteMessages( - channelID: string, - messageIDs: string[], - reason?: string - ): Promise; - purgeChannel( - channelID: string, - limit?: number, - filter?: (m: Message) => boolean, - before?: string, - after?: string - ): Promise; - getGuildEmbed(guildID: string): Promise; - getGuildIntegrations(guildID: string): Promise; - editGuildIntegration( - guildID: string, - integrationID: string, - options: IntegrationOptions - ): Promise; - deleteGuildIntegration( - guildID: string, - integrationID: string - ): Promise; - syncGuildIntegration(guildID: string, integrationID: string): Promise; - getGuildInvites(guildID: string): Promise; - banGuildMember( - guildID: string, - userID: string, - deleteMessageDays?: number, - reason?: string - ): Promise; - unbanGuildMember( - guildID: string, - userID: string, - reason?: string - ): Promise; - createGuild(name: string, region: string, icon?: string): Promise; - editGuild( - guildID: string, - options: GuildOptions, - reason?: string - ): Promise; - getGuildBans( - guildID: string - ): Promise< - Array<{ - reason?: string, - user: User - }> - >; - editGuildMember( - guildID: string, - memberID: string, - options: MemberOptions, - reason?: string - ): Promise; - addGuildMemberRole( - guildID: string, - memberID: string, - roleID: string, - reason?: string - ): Promise; - removeGuildMemberRole( - guildID: string, - memberID: string, - roleID: string, - reason?: string - ): Promise; - editNickname(guildID: string, nick: string, reason?: string): Promise; - kickGuildMember( - guildID: string, - userID: string, - reason?: string - ): Promise; - deleteGuild(guildID: string): Promise; - leaveGuild(guildID: string): Promise; - getOAuthApplication( - appID?: string - ): Promise<{ - description: string, - name: string, - owner: { - username: string, - discriminator: string, - id: string, - avatar?: string - }, - bot_public: boolean, - bot_require_code_grant: boolean, - id: string, - icon?: string - }>; - addRelationship(userID: string, block?: boolean): Promise; - removeRelationship(userID: string): Promise; - addGroupRecipient(groupID: string, userID: string): Promise; - removeGroupRecipient(groupID: string, userID: string): Promise; - getUserProfile(userID: string): Promise; - editUserNote(userID: string, note: string): Promise; - deleteUserNote(userID: string): Promise; - getSelfConnections(): Promise; - editSelfConnection( - platform: string, - id: string, - data: { - friendSync: boolean, - visibility: number - } - ): Promise; - deleteSelfConnection(platform: string, id: string): Promise; - getSelfSettings(): Promise; - editSelfSettings(data: UserSettings): Promise; - getSelfMFACodes( - password: string, - regenerate?: boolean - ): Promise<{ - backup_codes: Array<{ - code: string, - consumed: boolean - }> - }>; - enableSelfMFATOTP( - secret: string, - code: string - ): Promise<{ - token: string, - backup_codes: Array<{ - code: string, - consumed: boolean - }> - }>; - disableSelfMFATOTP( - code: string - ): Promise<{ - token: string - }>; - getSelfBilling(): Promise<{ - premium_subscription?: { - status: number, - ended_at?: string, - canceled_at?: string, - created_at: string, - current_period_end?: string, - current_period_start?: string, - plan: string - }, - payment_source?: { - type: string, - brand: string, - invalid: boolean, - last_4: number, - expires_year: number, - expires_month: number - }, - payment_gateway?: string - }>; - getSelfPayments(): Promise< - Array<{ - status: number, - amount_refunded: number, - description: string, - created_at: string, - currency: string, - amount: number - }> - >; - addSelfPremiumSubscription(token: string, plan: string): Promise; - deleteSelfPremiumSubscription(): Promise; - getRESTChannel(channelID: string): Promise; - getRESTGuild(guildID: string): Promise; - getRESTGuilds( - limit?: number, - before?: string, - after?: string - ): Promise; - getRESTGuildChannels(guildID: string): Promise; - getRESTGuildEmojis(guildID: string): Promise; - getRESTGuildEmoji(guildID: string, emojiID: string): Promise; - getRESTGuildMembers( - guildID: string, - limit?: number, - after?: string - ): Promise; - getRESTGuildMember(guildID: string, memberID: string): Promise; - getRESTGuildRoles(guildID: string): Promise; - getRESTUser(userID: string): Promise; - searchChannelMessages( - channelID: string, - query: SearchOptions - ): Promise; - searchGuildMessages( - guildID: string, - query: SearchOptions - ): Promise; - on(event: string, listener: Function): *; - on(event: "ready" | "disconnect", listener: () => void): *; - on( - event: "callCreate" | "callRing" | "callDelete", - listener: (call: Call) => void - ): *; - on( - event: "callUpdate", - listener: (call: Call, oldCall: OldCall) => void - ): *; - on( - event: "channelCreate" | "channelDelete", - listener: (channel: AnyChannel) => void - ): *; - on( - event: "channelPinUpdate", - listener: ( - channel: TextableChannel, - timestamp: number, - oldTimestamp: number - ) => void - ): *; - on( - event: "channelRecipientAdd" | "channelRecipientRemove", - listener: (channel: GroupChannel, user: User) => void - ): *; - on( - event: "channelUpdate", - listener: (channel: AnyChannel, oldChannel: OldChannel) => void - ): *; - on( - event: "friendSuggestionCreate", - listener: (user: User, reasons: FriendSuggestionReasons) => void - ): *; - on(event: "friendSuggestionDelete", listener: (user: User) => void): *; - on( - event: "guildAvailable" | "guildBanAdd" | "guildBanRemove", - listener: (guild: Guild, user: User) => void - ): *; - on( - event: "guildDelete" | "guildUnavailable" | "guildCreate", - listener: (guild: Guild) => void - ): *; - on( - event: "guildEmojisUpdate", - listener: (guild: Guild, emojis: Emoji[], oldEmojis: Emoji[]) => void - ): *; - on( - event: "guildMemberAdd", - listener: (guild: Guild, member: Member) => void - ): *; - on( - event: "guildMemberChunk", - listener: (guild: Guild, members: Member[]) => void - ): *; - on( - event: "guildMemberRemove", - listener: (guild: Guild, member: Member | MemberPartial) => void - ): *; - on( - event: "guildMemberUpdate", - listener: ( - guild: Guild, - member: Member, - oldMember: { - roles: string[], - nick?: string - } - ) => void - ): *; - on( - event: "guildRoleCreate" | "guildRoleDelete", - listener: (guild: Guild, role: Role) => void - ): *; - on( - event: "guildRoleUpdate", - listener: (guild: Guild, role: Role, oldRole: RoleOptions) => void - ): *; - on( - event: "guildUpdate", - listener: (guild: Guild, oldGuild: GuildOptions) => void - ): *; - on(event: "hello", listener: (trace: string[], id: number) => void): *; - on(event: "messageCreate", listener: (message: Message) => void): *; - on( - event: "messageDelete" | "messageReactionRemoveAll", - listener: (message: PossiblyUncachedMessage) => void - ): *; - on( - event: "messageDeleteBulk", - listener: (messages: PossiblyUncachedMessage[]) => void - ): *; - on( - event: "messageReactionAdd" | "messageReactionRemove", - listener: ( - message: PossiblyUncachedMessage, - emoji: Emoji, - userID: string - ) => void - ): *; - on( - event: "messageUpdate", - listener: ( - message: Message, - oldMessage?: { - attachments: Attachment[], - embeds: Embed[], - content: string, - editedTimestamp?: number, - mentionedBy?: any, - tts: boolean, - mentions: string[], - roleMentions: string[], - channelMentions: string[] - } - ) => void - ): *; - on( - event: "presenceUpdate", - listener: ( - other: Member | Relationship, - oldPresence?: OldPresence - ) => void - ): *; - on( - event: "rawWS" | "unknown", - listener: (packet: RawPacket, id: number) => void - ): *; - on( - event: "relationshipAdd" | "relationshipRemove", - listener: (relationship: Relationship) => void - ): *; - on( - event: "relationshipUpdate", - listener: ( - relationship: Relationship, - oldRelationship: { - type: number - } - ) => void - ): *; - on( - event: "typingStart", - listener: (channel: TextableChannel, user: User) => void - ): *; - on( - event: "unavailableGuildCreate", - listener: (guild: UnavailableGuild) => void - ): *; - on( - event: "userUpdate", - listener: ( - user: User, - oldUser: { - username: string, - discriminator: string, - avatar?: string - } - ) => void - ): *; - on( - event: "voiceChannelJoin", - listener: (member: Member, newChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelLeave", - listener: (member: Member, oldChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelSwitch", - listener: ( - member: Member, - newChannel: VoiceChannel, - oldChannel: VoiceChannel - ) => void - ): *; - on( - event: "voiceStateUpdate", - listener: (member: Member, oldState: OldVoiceState) => void - ): *; - on( - event: "warn" | "debug", - listener: (message: string, id: number) => void - ): *; - on( - event: "shardDisconnect" | "error" | "shardPreReady" | "connect", - listener: (err: Error, id: number) => void - ): *; - on( - event: "shardReady" | "shardResume", - listener: (id: number) => void - ): *; - toJSON(simple?: boolean): JSONCache; - } - declare export class VoiceConnection extends events$EventEmitter implements SimpleJSON { - id: string; - channelID: string; - connecting: boolean; - ready: boolean; - playing: boolean; - paused: boolean; - volume: number; - current: { - startTime: number, - playTime: number, - pausedTimestamp?: number, - pausedTime?: number, - options: VoiceResourceOptions - }; - constructor( - id: string, - options?: { - shard?: Shard, - shared?: boolean, - opusOnly?: boolean - } - ): *; - pause(): void; - play( - resource: ReadableStream | string, - options?: VoiceResourceOptions - ): void; - receive(type: string): VoiceDataStream; - resume(): void; - setVolume(volume: number): void; - stopPlaying(): void; - switchChannel(channelID: string): void; - updateVoiceState(selfMute: boolean, selfDeaf: boolean): void; - on(event: "debug" | "warn", listener: (message: string) => void): *; - on(event: "error" | "disconnect", listener: (err: Error) => void): *; - on(event: "pong", listener: (latency: number) => void): *; - on(event: "speakingStart", listener: (userID: string) => void): *; - on(event: "end", listener: () => void): *; - on(event: string, listener: (e: mixed, ...args: Array) => void): *; - toJSON(simple?: boolean): JSONCache; - } - declare export class SharedStream extends events$EventEmitter { - playing: boolean; - ended: boolean; - volume: number; - speaking: boolean; - current: { - startTime: number, - playTime: number, - pausedTimestamp?: number, - pausedTime?: number, - options: VoiceResourceOptions - }; - add(connection: VoiceConnection): void; - play( - resource: ReadableStream | string, - options: VoiceResourceOptions - ): void; - remove(connection: VoiceConnection): void; - setVolume(volume: number): void; - stopPlaying(): void; - } - declare class VoiceDataStream { - type: string; - constructor(type: string): *; - } - declare export class VoiceConnectionManager - extends Collection implements SimpleJSON { - constructor(vcObject: () => T): *; - join( - guildID: string, - channelID: string, - options: VoiceResourceOptions - ): Promise; - leave(guildID: string): void; - switch(guildID: string, channelID: string): void; - toJSON(simple?: boolean): JSONCache; - } - declare class Base implements SimpleJSON { - id: string; - createdAt: number; - constructor(id: string): *; - inspect(): *; - toJSON(simple?: boolean): JSONCache; - } - declare export class Bucket { - tokens: number; - lastReset: number; - lastSend: number; - tokenLimit: number; - interval: number; - constructor( - tokenLimit: number, - interval: number, - latencyRef: { - latency: number - } - ): *; - queue(func: Function): void; - } - declare export class Collection extends Map { - baseObject: (...args: any[]) => T; - limit: number; - constructor(baseObject: (...args: any[]) => T, limit?: number): *; - add(obj: T, extra?: any, replace?: boolean): T; - find(func: (i: T) => boolean): T; - random(): T; - filter(func: (i: T) => boolean): T[]; - map(func: (i: T) => R): R[]; - update(obj: T, extra?: any, replace?: boolean): T; - remove( - obj: - | T - | { - id: string - } - ): T; - } - declare export class Call extends Base { - id: string; - createdAt: number; - channel: GroupChannel; - voiceStates: Collection; - participants: string[]; - endedTimestamp: number; - ringing: string[]; - region: string; - unavailable: boolean; - constructor(data: BaseData, channel: GroupChannel): *; - } - declare export class Channel extends Base { - id: string; - mention: string; - type: number; - createdAt: number; - constructor(data: BaseData): *; - } - declare export class ExtendedUser extends User { - email: string; - verified: boolean; - mfaEnabled: boolean; - } - declare export class GroupChannel extends PrivateChannel { - recipients: Collection; - name: string; - icon: string; - iconURL: string; - ownerID: string; - edit(options: { - name?: string, - icon?: string, - ownerID?: string - }): Promise; - addRecipient(userID: string): Promise; - removeRecipient(userID: string): Promise; - dynamicIconURL(format: string, size: number): string; - } - declare export class Guild extends Base { - id: string; - createdAt: number; - name: string; - verificationLevel: number; - region: string; - icon: string; - afkChannelID: string; - systemChannelID: string; - afkTimeout: number; - defaultNotifications: number; - mfaLevel: number; - joinedAt: number; - ownerID: string; - splash: string; - unavailable: boolean; - large: boolean; - maxPresences: number; - channels: Collection; - members: Collection; - memberCount: number; - roles: Collection; - shard: Shard; - features: string[]; - emojis: Emoji[]; - iconURL: string; - explicitContentFilter: number; - constructor(data: BaseData, client: Client): *; - fetchAllMembers(): void; - dynamicIconURL(format: string, size: number): string; - createChannel( - name: string, - type: string, - parentID?: string - ): Promise; - createEmoji( - options: { - name: string, - image: string, - roles?: string[] - }, - reason?: string - ): Promise; - editEmoji( - emojiID: string, - options: { - name: string, - roles?: string[] - }, - reason?: string - ): Promise; - deleteEmoji(emojiID: string, reason?: string): Promise; - createRole(options: RoleOptions, reason?: string): Promise; - getPruneCount(days: number): Promise; - pruneMembers(days: number, reason?: string): Promise; - getRESTChannels(): Promise; - getRESTEmojis(): Promise; - getRESTEmoji(emojiID: string): Promise; - getRESTMembers(limit?: number, after?: string): Promise; - getRESTMember(memberID: string): Promise; - getRESTRoles(): Promise; - getEmbed(): Promise; - getVoiceRegions(): Promise; - leaveVoiceChannel(): void; - editRole(roleID: string, options: RoleOptions): Promise; - deleteRole(roleID: string): Promise; - getAuditLogs( - limit?: number, - before?: string, - actionType?: number - ): Promise; - getIntegrations(): Promise; - editIntegration( - integrationID: string, - options: IntegrationOptions - ): Promise; - syncIntegration(integrationID: string): Promise; - deleteIntegration(integrationID: string): Promise; - getInvites(): Promise; - editMember( - memberID: string, - options: MemberOptions, - reason?: string - ): Promise; - addMemberRole( - memberID: string, - roleID: string, - reason?: string - ): Promise; - removeMemberRole( - memberID: string, - roleID: string, - reason?: string - ): Promise; - kickMember(userID: string, reason?: string): Promise; - banMember( - userID: string, - deleteMessageDays?: number, - reason?: string - ): Promise; - unbanMember(userID: string, reason?: string): Promise; - edit(options: GuildOptions, reason?: string): Promise; - delete(): Promise; - leave(): Promise; - getBans(): Promise; - editNickname(nick: string): Promise; - getWebhooks(): Promise; - } - declare export class GuildAuditLogEntry extends Base { - id: string; - guild: Guild; - actionType: number; - reason: string; - user: User; - targetID: string; - target: Guild | AnyGuildChannel | Member | Invite | Role | any; - before: any; - after: any; - count: number; - channel: AnyGuildChannel; - deleteMemberDays: number; - membersRemoved: number; - member: Member | any; - role: Role | any; - constructor(data: BaseData, guild: Guild): *; - } - declare export class GuildChannel extends Channel { - guild: Guild; - parentID: string; - name: string; - position: number; - permissionOverwrites: Collection; - nsfw: boolean; - constructor(data: BaseData, guild: Guild): *; - getInvites(): Promise; - createInvite( - options?: CreateInviteOptions, - reason?: string - ): Promise; - permissionsOf(memberID: string): Permission; - edit( - options: { - name?: string, - topic?: string, - bitrate?: number, - userLimit?: number, - nsfw?: boolean - }, - reason?: string - ): Promise; - editPosition(position: number): Promise; - delete(reason?: string): Promise; - editPermission( - overwriteID: string, - allow: number, - deny: number, - type: string, - reason?: string - ): Promise; - deletePermission(overwriteID: string, reason?: string): Promise; - } - declare export class CategoryChannel extends GuildChannel { - channels: Collection; - } - declare export class TextChannel extends GuildChannel implements Textable, Invitable { - topic: string; - lastMessageID: string; - messages: Collection; - constructor(data: BaseData, guild: Guild, messageLimit: number): *; - getInvites(): Promise; - createInvite( - options?: CreateInviteOptions, - reason?: string - ): Promise; - getWebhooks(): Promise; - createWebhook( - options: { - name: string, - avatar: string - }, - reason?: string - ): Promise; - sendTyping(): Promise; - getMessage(messageID: string): Promise; - getMessages( - limit?: number, - before?: string, - after?: string, - around?: string - ): Promise; - getPins(): Promise; - createMessage( - content: MessageContent, - file?: MessageFile - ): Promise; - editMessage(messageID: string, content: MessageContent): Promise; - pinMessage(messageID: string): Promise; - unpinMessage(messageID: string): Promise; - getMessageReaction( - messageID: string, - reaction: string, - limit?: number, - before?: string, - after?: string - ): Promise; - addMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReactions(messageID: string): Promise; - deleteMessage(messageID: string, reason?: string): Promise; - unsendMessage(messageID: string): Promise; - } - declare export class VoiceChannel extends GuildChannel implements Invitable { - bitrate: number; - userLimit: number; - voiceMembers: Collection; - join(options: VoiceResourceOptions): Promise; - leave(): void; - } - declare export class GuildIntegration extends Base { - id: string; - createdAt: number; - name: string; - type: string; - roleID: string; - user: User; - account: { - id: string, - name: string - }; - enabled: boolean; - syncing: boolean; - expireBehavior: number; - expireGracePeriod: number; - enableEmoticons: boolean; - subscriberCount: number; - syncedAt: number; - constructor(data: BaseData, guild: Guild): *; - edit(options: { - expireBehavior: string, - expireGracePeriod: string, - enableEmoticons: string - }): Promise; - delete(): Promise; - sync(): Promise; - } - declare export class Invite implements SimpleJSON { - code: string; - channel: { - id: string, - name: string - }; - guild: { - id: string, - name: string, - splash?: string, - icon?: string, - textChannelCount?: number, - voiceChannelCount?: number - }; - inviter: User; - uses: number; - maxUses: number; - maxAge: number; - temporary: boolean; - createdAt: number; - revoked: boolean; - presenceCount: number; - memberCount: number; - constructor(data: BaseData, client: Client): *; - delete(reason?: string): Promise; - toJSON(simple?: boolean): JSONCache; - } - declare export class Member extends Base { - id: string; - mention: string; - guild: Guild; - joinedAt: number; - status: string; - game: GamePresence; - voiceState: VoiceState; - nick: string; - roles: string[]; - user: User; - permission: Permission; - defaultAvatar: string; - createdAt: number; - bot: boolean; - username: string; - discriminator: string; - avatar: string; - defaultAvatarURL: string; - avatarURL: string; - staticAvatarURL: string; - constructor(data: BaseData, guild: Guild): *; - edit(options: MemberOptions, reason?: string): Promise; - addRole(roleID: string, reason?: string): Promise; - removeRole(roleID: string, reason?: string): Promise; - kick(reason?: string): Promise; - ban(deleteMessageDays?: number, reason?: string): Promise; - unban(reason?: string): Promise; - } - declare export class Message extends Base { - id: string; - createdAt: number; - channel: TextableChannel; - timestamp: number; - type: number; - author: User; - member: Member; - mentions: User[]; - content: string; - cleanContent: string; - roleMentions: string[]; - channelMentions: string[]; - editedTimestamp: number; - tts: boolean; - mentionEveryone: boolean; - attachments: Attachment[]; - embeds: Embed[]; - reactions: { - [s: string]: any, - count: number, - me: boolean - }; - prefix: string; - command: Command; - constructor(data: BaseData, client: Client): *; - edit(content: MessageContent): Promise; - pin(): Promise; - unpin(): Promise; - getReaction( - reaction: string, - limit?: number, - before?: string, - after?: string - ): Promise; - addReaction(reaction: string, userID?: string): Promise; - removeReaction(reaction: string, userID?: string): Promise; - removeReactions(): Promise; - delete(reason?: string): Promise; - } - declare export class Permission { - allow: number; - deny: number; - json: { - [s: string]: boolean - }; - constructor(allow: number, deny: number): *; - has(permission: string): boolean; - } - declare export class PermissionOverwrite extends Permission { - id: string; - createdAt: number; - type: string; - constructor(data: { - allow: number, - deny: number - }): *; - } - declare export class PrivateChannel extends Channel implements Textable { - lastMessageID: string; - recipient: User; - messages: Collection; - ring(recipient: string[]): void; - syncCall(): void; - leave(): Promise; - sendTyping(): Promise; - getMessage(messageID: string): Promise; - getMessages( - limit?: number, - before?: string, - after?: string, - around?: string - ): Promise; - getPins(): Promise; - createMessage( - content: MessageContent, - file?: MessageFile - ): Promise; - editMessage(messageID: string, content: MessageContent): Promise; - pinMessage(messageID: string): Promise; - unpinMessage(messageID: string): Promise; - getMessageReaction( - messageID: string, - reaction: string, - limit?: number, - before?: string, - after?: string - ): Promise; - addMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReaction( - messageID: string, - reaction: string, - userID?: string - ): Promise; - removeMessageReactions(messageID: string): Promise; - deleteMessage(messageID: string, reason?: string): Promise; - unsendMessage(messageID: string): Promise; - } - declare export class Relationship { - id: string; - user: User; - type: number; - status: string; - game: GamePresence; - constructor(data: BaseData, client: Client): *; - } - declare export class Role extends Base { - id: string; - createdAt: number; - guild: Guild; - mention: string; - name: string; - mentionable: boolean; - managed: boolean; - hoist: boolean; - color: number; - position: number; - permissions: Permission; - json: { - [s: string]: boolean - }; - constructor(data: BaseData, guild: Guild): *; - edit(options: RoleOptions, reason?: string): Promise; - editPosition(position: number): Promise; - delete(reason?: string): Promise; - } - declare export class UnavailableGuild extends Base { - id: string; - createdAt: number; - unavailable: boolean; - shard: Shard; - constructor(data: BaseData, client: Client): *; - } - declare export class User extends Base { - id: string; - mention: string; - defaultAvatar: string; - createdAt: number; - bot: boolean; - username: string; - discriminator: string; - avatar: string; - defaultAvatarURL: string; - avatarURL: string; - staticAvatarURL: string; - constructor(data: BaseData, client: Client): *; - dynamicAvatarURL(format?: string, size?: number): string; - getDMChannel(): Promise; - addRelationship(block?: boolean): Promise; - removeRelationship(): Promise; - getProfile(): Promise; - editNote(note: string): Promise; - deleteNote(): Promise; - } - declare export class VoiceState extends Base implements NestedJSON { - id: string; - createdAt: number; - sessionID: string; - channelID: string; - mute: boolean; - deaf: boolean; - suppress: boolean; - selfMute: boolean; - selfDeaf: boolean; - constructor(data: BaseData): *; - toJSON(arg?: any, cache?: Array): JSONCache; - } - declare export class Shard extends events$EventEmitter implements SimpleJSON, Emittable { - id: number; - connecting: boolean; - ready: boolean; - discordServerTrace: string[]; - status: string; - lastHeartbeatReceived: number; - lastHeartbeatSent: number; - latency: number; - constructor(id: number, client: Client): *; - connect(): void; - disconnect(options?: { - reconnect: boolean - }): void; - editAFK(afk: boolean): void; - editStatus(status?: string, game?: GamePresence): void; - on(event: string, listener: Function): *; - on(event: "ready" | "disconnect", listener: () => void): *; - on( - event: "callCreate" | "callRing" | "callDelete", - listener: (call: Call) => void - ): *; - on( - event: "callUpdate", - listener: (call: Call, oldCall: OldCall) => void - ): *; - on( - event: "channelCreate" | "channelDelete", - listener: (channel: AnyChannel) => void - ): *; - on( - event: "channelPinUpdate", - listener: ( - channel: TextableChannel, - timestamp: number, - oldTimestamp: number - ) => void - ): *; - on( - event: "channelRecipientAdd" | "channelRecipientRemove", - listener: (channel: GroupChannel, user: User) => void - ): *; - on( - event: "channelUpdate", - listener: (channel: AnyChannel, oldChannel: OldChannel) => void - ): *; - on( - event: "friendSuggestionCreate", - listener: (user: User, reasons: FriendSuggestionReasons) => void - ): *; - on(event: "friendSuggestionDelete", listener: (user: User) => void): *; - on( - event: "guildAvailable" | "guildBanAdd" | "guildBanRemove", - listener: (guild: Guild, user: User) => void - ): *; - on( - event: "guildDelete" | "guildUnavailable" | "guildCreate", - listener: (guild: Guild) => void - ): *; - on( - event: "guildEmojisUpdate", - listener: (guild: Guild, emojis: Emoji[], oldEmojis: Emoji[]) => void - ): *; - on( - event: "guildMemberAdd", - listener: (guild: Guild, member: Member) => void - ): *; - on( - event: "guildMemberChunk", - listener: (guild: Guild, members: Member[]) => void - ): *; - on( - event: "guildMemberRemove", - listener: (guild: Guild, member: Member | MemberPartial) => void - ): *; - on( - event: "guildMemberUpdate", - listener: ( - guild: Guild, - member: Member, - oldMember: { - roles: string[], - nick?: string - } - ) => void - ): *; - on( - event: "guildRoleCreate" | "guildRoleDelete", - listener: (guild: Guild, role: Role) => void - ): *; - on( - event: "guildRoleUpdate", - listener: (guild: Guild, role: Role, oldRole: RoleOptions) => void - ): *; - on( - event: "guildUpdate", - listener: (guild: Guild, oldGuild: GuildOptions) => void - ): *; - on(event: "hello", listener: (trace: string[], id: number) => void): *; - on(event: "messageCreate", listener: (message: Message) => void): *; - on( - event: "messageDelete" | "messageReactionRemoveAll", - listener: (message: PossiblyUncachedMessage) => void - ): *; - on( - event: "messageDeleteBulk", - listener: (messages: PossiblyUncachedMessage[]) => void - ): *; - on( - event: "messageReactionAdd" | "messageReactionRemove", - listener: ( - message: PossiblyUncachedMessage, - emoji: Emoji, - userID: string - ) => void - ): *; - on( - event: "messageUpdate", - listener: ( - message: Message, - oldMessage?: { - attachments: Attachment[], - embeds: Embed[], - content: string, - editedTimestamp?: number, - mentionedBy?: any, - tts: boolean, - mentions: string[], - roleMentions: string[], - channelMentions: string[] - } - ) => void - ): *; - on( - event: "presenceUpdate", - listener: ( - other: Member | Relationship, - oldPresence?: OldPresence - ) => void - ): *; - on( - event: "rawWS" | "unknown", - listener: (packet: RawPacket, id: number) => void - ): *; - on( - event: "relationshipAdd" | "relationshipRemove", - listener: (relationship: Relationship) => void - ): *; - on( - event: "relationshipUpdate", - listener: ( - relationship: Relationship, - oldRelationship: { - type: number - } - ) => void - ): *; - on( - event: "shardPreReady" | "connect", - listener: (id: number) => void - ): *; - on( - event: "typingStart", - listener: (channel: TextableChannel, user: User) => void - ): *; - on( - event: "unavailableGuildCreate", - listener: (guild: UnavailableGuild) => void - ): *; - on( - event: "userUpdate", - listener: ( - user: User, - oldUser: { - username: string, - discriminator: string, - avatar?: string - } - ) => void - ): *; - on( - event: "voiceChannelJoin", - listener: (member: Member, newChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelLeave", - listener: (member: Member, oldChannel: VoiceChannel) => void - ): *; - on( - event: "voiceChannelSwitch", - listener: ( - member: Member, - newChannel: VoiceChannel, - oldChannel: VoiceChannel - ) => void - ): *; - on( - event: "voiceStateUpdate", - listener: (member: Member, oldState: OldVoiceState) => void - ): *; - on( - event: "warn" | "debug", - listener: (message: string, id: number) => void - ): *; - on(event: "disconnect", listener: (err: Error) => void): *; - on(event: "resume", listener: () => void): *; - toJSON(simple?: boolean): JSONCache; - sendWS(op: number, _data: { [key: string]: any }): void; - } - declare export class Command { - subcommands: { - [s: string]: Command - }; - constructor( - label: string, - generate: CommandGenerator, - options?: CommandOptions - ): *; - registerSubcommandAlias(alias: string, label: string): void; - registerSubcommand( - label: string, - generator: CommandGenerator, - options?: CommandOptions - ): void; - unregisterSubcommand(label: string): void; - } - declare export class CommandClient extends Client { - commands: { - [s: string]: Command - }; - constructor( - token: string, - options?: ClientOptions, - commandOptions?: CommandClientOptions - ): *; - onMessageCreate(msg: Message): void; - registerGuildPrefix(guildID: string, prefix: string[] | string): void; - registerCommandAlias(alias: string, label: string): void; - registerCommand( - label: string, - generator: CommandGenerator, - options?: CommandOptions - ): Command; - unregisterCommand(label: string): void; - } -} diff --git a/flow-typed/npm/erlpack_vx.x.x.js b/flow-typed/npm/erlpack_vx.x.x.js deleted file mode 100644 index 51421bc..0000000 --- a/flow-typed/npm/erlpack_vx.x.x.js +++ /dev/null @@ -1,46 +0,0 @@ -// flow-typed signature: a4fb1c51462475d842d068273db86843 -// flow-typed version: <>/erlpack_vdiscordapp/erlpack/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'erlpack' - * - * 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 'erlpack' { - 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 'erlpack/js/__tests__/decoder-test' { - declare module.exports: any; -} - -declare module 'erlpack/js/__tests__/encoder-test' { - declare module.exports: any; -} - -declare module 'erlpack/js/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'erlpack/js/__tests__/decoder-test.js' { - declare module.exports: $Exports<'erlpack/js/__tests__/decoder-test'>; -} -declare module 'erlpack/js/__tests__/encoder-test.js' { - declare module.exports: $Exports<'erlpack/js/__tests__/encoder-test'>; -} -declare module 'erlpack/js/index.js' { - declare module.exports: $Exports<'erlpack/js/index'>; -} diff --git a/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js b/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js deleted file mode 100644 index dc7051a..0000000 --- a/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js +++ /dev/null @@ -1,459 +0,0 @@ -// flow-typed signature: 4fb2b3a476af47fa4fb9ef0061765ae7 -// flow-typed version: <>/eslint-plugin-flowtype_v^3.6.1/flow_v0.96.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/dist/bin/addAssertions' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/bin/checkDocs' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/bin/checkTests' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/bin/utilities' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/index' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/index' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType' { - 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/newlineAfterFlowAnnotation' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/rules/noDupeKeys' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/rules/noExistentialType' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/rules/noMixed' { - 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/requireCompoundTypeAlias' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/rules/requireExactType' { - 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/requireTypesAtTop' { - 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/evaluateVariables' { - 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/typeImportStyle' { - 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/dist/bin/addAssertions.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/addAssertions'>; -} -declare module 'eslint-plugin-flowtype/dist/bin/checkDocs.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/checkDocs'>; -} -declare module 'eslint-plugin-flowtype/dist/bin/checkTests.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/checkTests'>; -} -declare module 'eslint-plugin-flowtype/dist/bin/utilities.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/utilities'>; -} -declare module 'eslint-plugin-flowtype/dist/index.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/index'>; -} -declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/index.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle/index'>; -} -declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType'>; -} -declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap'>; -} -declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType'>; -} -declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType'>; -} -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/newlineAfterFlowAnnotation.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/newlineAfterFlowAnnotation'>; -} -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/noExistentialType.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noExistentialType'>; -} -declare module 'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments'>; -} -declare module 'eslint-plugin-flowtype/dist/rules/noMixed.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noMixed'>; -} -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/requireCompoundTypeAlias.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireCompoundTypeAlias'>; -} -declare module 'eslint-plugin-flowtype/dist/rules/requireExactType.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireExactType'>; -} -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/requireTypesAtTop.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireTypesAtTop'>; -} -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/evaluateVariables.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateVariables'>; -} -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/typeImportStyle.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeImportStyle'>; -} -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'>; -} diff --git a/flow-typed/npm/eslint_vx.x.x.js b/flow-typed/npm/eslint_vx.x.x.js deleted file mode 100644 index 2a4e743..0000000 --- a/flow-typed/npm/eslint_vx.x.x.js +++ /dev/null @@ -1,2496 +0,0 @@ -// flow-typed signature: 8ede7cbded5d7b04fc44cc1997bc16e1 -// flow-typed version: <>/eslint_v^5.16.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * '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 '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 'eslint/bin/eslint' { - declare module.exports: any; -} - -declare module 'eslint/conf/config-schema' { - declare module.exports: any; -} - -declare module 'eslint/conf/default-cli-options' { - declare module.exports: any; -} - -declare module 'eslint/conf/environments' { - declare module.exports: any; -} - -declare module 'eslint/conf/eslint-all' { - declare module.exports: any; -} - -declare module 'eslint/conf/eslint-recommended' { - declare module.exports: any; -} - -declare module 'eslint/lib/api' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/code-path-analyzer' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/code-path-segment' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/code-path-state' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/code-path' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/debug-helpers' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/fork-context' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/id-generator' { - declare module.exports: any; -} - -declare module 'eslint/lib/config' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/autoconfig' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/config-cache' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/config-file' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/config-initializer' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/config-ops' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/config-rule' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/config-validator' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/environments' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/plugins' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/checkstyle' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/codeframe' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/compact' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/html' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/jslint-xml' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/json' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/junit' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/stylish' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/table' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/tap' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/unix' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/visualstudio' { - declare module.exports: any; -} - -declare module 'eslint/lib/ignored-paths' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter' { - declare module.exports: any; -} - -declare module 'eslint/lib/load-rules' { - declare module.exports: any; -} - -declare module 'eslint/lib/options' { - declare module.exports: any; -} - -declare module 'eslint/lib/report-translator' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/accessor-pairs' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/array-bracket-newline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/array-bracket-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/array-callback-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/array-element-newline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/arrow-body-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/arrow-parens' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/arrow-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/block-scoped-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/block-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/brace-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/callback-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/camelcase' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/capitalized-comments' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/class-methods-use-this' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/comma-dangle' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/comma-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/comma-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/complexity' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/computed-property-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/consistent-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/consistent-this' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/constructor-super' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/curly' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/default-case' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/dot-location' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/dot-notation' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/eol-last' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/eqeqeq' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/for-direction' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/func-call-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/func-name-matching' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/func-names' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/func-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/function-paren-newline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/generator-star-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/getter-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/global-require' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/guard-for-in' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/handle-callback-err' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/id-blacklist' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/id-length' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/id-match' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/implicit-arrow-linebreak' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/indent-legacy' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/indent' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/init-declarations' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/jsx-quotes' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/key-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/keyword-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/line-comment-position' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/linebreak-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/lines-around-comment' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/lines-around-directive' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/lines-between-class-members' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-classes-per-file' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-depth' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-len' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-lines-per-function' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-lines' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-nested-callbacks' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-params' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-statements-per-line' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-statements' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/multiline-comment-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/multiline-ternary' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/new-cap' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/new-parens' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/newline-after-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/newline-before-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/newline-per-chained-call' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-alert' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-array-constructor' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-async-promise-executor' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-await-in-loop' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-bitwise' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-buffer-constructor' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-caller' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-case-declarations' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-catch-shadow' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-class-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-compare-neg-zero' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-cond-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-confusing-arrow' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-console' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-const-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-constant-condition' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-continue' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-control-regex' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-debugger' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-delete-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-div-regex' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-dupe-args' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-dupe-class-members' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-dupe-keys' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-duplicate-case' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-duplicate-imports' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-else-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-empty-character-class' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-empty-function' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-empty-pattern' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-empty' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-eq-null' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-eval' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-ex-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extend-native' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extra-bind' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extra-boolean-cast' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extra-label' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extra-parens' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extra-semi' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-fallthrough' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-floating-decimal' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-func-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-global-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-implicit-coercion' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-implicit-globals' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-implied-eval' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-inline-comments' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-inner-declarations' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-invalid-regexp' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-invalid-this' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-irregular-whitespace' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-iterator' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-label-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-labels' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-lone-blocks' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-lonely-if' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-loop-func' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-magic-numbers' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-misleading-character-class' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-mixed-operators' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-mixed-requires' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-mixed-spaces-and-tabs' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-multi-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-multi-spaces' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-multi-str' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-multiple-empty-lines' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-native-reassign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-negated-condition' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-negated-in-lhs' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-nested-ternary' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new-func' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new-object' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new-require' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new-symbol' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new-wrappers' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-obj-calls' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-octal-escape' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-octal' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-param-reassign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-path-concat' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-plusplus' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-process-env' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-process-exit' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-proto' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-prototype-builtins' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-redeclare' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-regex-spaces' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-restricted-globals' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-restricted-imports' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-restricted-modules' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-restricted-properties' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-restricted-syntax' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-return-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-return-await' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-script-url' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-self-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-self-compare' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-sequences' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-shadow-restricted-names' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-shadow' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-spaced-func' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-sparse-arrays' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-sync' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-tabs' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-template-curly-in-string' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-ternary' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-this-before-super' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-throw-literal' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-trailing-spaces' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-undef-init' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-undef' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-undefined' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-underscore-dangle' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unexpected-multiline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unmodified-loop-condition' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unneeded-ternary' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unreachable' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unsafe-finally' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unsafe-negation' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unused-expressions' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unused-labels' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unused-vars' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-use-before-define' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-call' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-computed-key' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-concat' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-constructor' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-escape' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-rename' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-void' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-warning-comments' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-whitespace-before-property' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-with' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/nonblock-statement-body-position' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/object-curly-newline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/object-curly-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/object-property-newline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/object-shorthand' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/one-var-declaration-per-line' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/one-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/operator-assignment' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/operator-linebreak' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/padded-blocks' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/padding-line-between-statements' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-arrow-callback' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-const' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-destructuring' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-numeric-literals' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-object-spread' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-promise-reject-errors' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-reflect' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-rest-params' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-spread' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-template' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/quote-props' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/quotes' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/radix' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/require-atomic-updates' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/require-await' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/require-jsdoc' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/require-unicode-regexp' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/require-yield' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/rest-spread-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/semi-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/semi-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/semi' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/sort-imports' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/sort-keys' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/sort-vars' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/space-before-blocks' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/space-before-function-paren' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/space-in-parens' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/space-infix-ops' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/space-unary-ops' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/spaced-comment' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/strict' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/switch-colon-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/symbol-description' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/template-curly-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/template-tag-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/unicode-bom' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/use-isnan' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/valid-jsdoc' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/valid-typeof' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/vars-on-top' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/wrap-iife' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/wrap-regex' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/yield-star-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/yoda' { - declare module.exports: any; -} - -declare module 'eslint/lib/testers/rule-tester' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/backward-token-comment-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/backward-token-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/cursors' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/decorative-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/filter-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/forward-token-comment-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/forward-token-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/index' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/limit-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/padded-token-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/skip-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store/utils' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/ajv' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/apply-disable-directives' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/ast-utils' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/file-finder' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/fix-tracker' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/glob-utils' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/glob' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/hash' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/interpolate' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/keywords' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/lint-result-cache' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/logging' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/module-resolver' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/naming' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/node-event-generator' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/npm-utils' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/path-utils' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/patterns/letters' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/rule-fixer' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/safe-emitter' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/source-code-fixer' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/source-code-utils' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/source-code' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/timing' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/traverser' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/unicode/index' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/unicode/is-combining-character' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/unicode/is-emoji-modifier' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/unicode/is-regional-indicator-symbol' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/unicode/is-surrogate-pair' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/xml-escape' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint/bin/eslint.js' { - declare module.exports: $Exports<'eslint/bin/eslint'>; -} -declare module 'eslint/conf/config-schema.js' { - declare module.exports: $Exports<'eslint/conf/config-schema'>; -} -declare module 'eslint/conf/default-cli-options.js' { - declare module.exports: $Exports<'eslint/conf/default-cli-options'>; -} -declare module 'eslint/conf/environments.js' { - declare module.exports: $Exports<'eslint/conf/environments'>; -} -declare module 'eslint/conf/eslint-all.js' { - declare module.exports: $Exports<'eslint/conf/eslint-all'>; -} -declare module 'eslint/conf/eslint-recommended.js' { - declare module.exports: $Exports<'eslint/conf/eslint-recommended'>; -} -declare module 'eslint/lib/api.js' { - declare module.exports: $Exports<'eslint/lib/api'>; -} -declare module 'eslint/lib/cli-engine.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine'>; -} -declare module 'eslint/lib/cli.js' { - declare module.exports: $Exports<'eslint/lib/cli'>; -} -declare module 'eslint/lib/code-path-analysis/code-path-analyzer.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path-analyzer'>; -} -declare module 'eslint/lib/code-path-analysis/code-path-segment.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path-segment'>; -} -declare module 'eslint/lib/code-path-analysis/code-path-state.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path-state'>; -} -declare module 'eslint/lib/code-path-analysis/code-path.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path'>; -} -declare module 'eslint/lib/code-path-analysis/debug-helpers.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/debug-helpers'>; -} -declare module 'eslint/lib/code-path-analysis/fork-context.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/fork-context'>; -} -declare module 'eslint/lib/code-path-analysis/id-generator.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/id-generator'>; -} -declare module 'eslint/lib/config.js' { - declare module.exports: $Exports<'eslint/lib/config'>; -} -declare module 'eslint/lib/config/autoconfig.js' { - declare module.exports: $Exports<'eslint/lib/config/autoconfig'>; -} -declare module 'eslint/lib/config/config-cache.js' { - declare module.exports: $Exports<'eslint/lib/config/config-cache'>; -} -declare module 'eslint/lib/config/config-file.js' { - declare module.exports: $Exports<'eslint/lib/config/config-file'>; -} -declare module 'eslint/lib/config/config-initializer.js' { - declare module.exports: $Exports<'eslint/lib/config/config-initializer'>; -} -declare module 'eslint/lib/config/config-ops.js' { - declare module.exports: $Exports<'eslint/lib/config/config-ops'>; -} -declare module 'eslint/lib/config/config-rule.js' { - declare module.exports: $Exports<'eslint/lib/config/config-rule'>; -} -declare module 'eslint/lib/config/config-validator.js' { - declare module.exports: $Exports<'eslint/lib/config/config-validator'>; -} -declare module 'eslint/lib/config/environments.js' { - declare module.exports: $Exports<'eslint/lib/config/environments'>; -} -declare module 'eslint/lib/config/plugins.js' { - declare module.exports: $Exports<'eslint/lib/config/plugins'>; -} -declare module 'eslint/lib/formatters/checkstyle.js' { - declare module.exports: $Exports<'eslint/lib/formatters/checkstyle'>; -} -declare module 'eslint/lib/formatters/codeframe.js' { - declare module.exports: $Exports<'eslint/lib/formatters/codeframe'>; -} -declare module 'eslint/lib/formatters/compact.js' { - declare module.exports: $Exports<'eslint/lib/formatters/compact'>; -} -declare module 'eslint/lib/formatters/html.js' { - declare module.exports: $Exports<'eslint/lib/formatters/html'>; -} -declare module 'eslint/lib/formatters/jslint-xml.js' { - declare module.exports: $Exports<'eslint/lib/formatters/jslint-xml'>; -} -declare module 'eslint/lib/formatters/json.js' { - declare module.exports: $Exports<'eslint/lib/formatters/json'>; -} -declare module 'eslint/lib/formatters/junit.js' { - declare module.exports: $Exports<'eslint/lib/formatters/junit'>; -} -declare module 'eslint/lib/formatters/stylish.js' { - declare module.exports: $Exports<'eslint/lib/formatters/stylish'>; -} -declare module 'eslint/lib/formatters/table.js' { - declare module.exports: $Exports<'eslint/lib/formatters/table'>; -} -declare module 'eslint/lib/formatters/tap.js' { - declare module.exports: $Exports<'eslint/lib/formatters/tap'>; -} -declare module 'eslint/lib/formatters/unix.js' { - declare module.exports: $Exports<'eslint/lib/formatters/unix'>; -} -declare module 'eslint/lib/formatters/visualstudio.js' { - declare module.exports: $Exports<'eslint/lib/formatters/visualstudio'>; -} -declare module 'eslint/lib/ignored-paths.js' { - declare module.exports: $Exports<'eslint/lib/ignored-paths'>; -} -declare module 'eslint/lib/linter.js' { - declare module.exports: $Exports<'eslint/lib/linter'>; -} -declare module 'eslint/lib/load-rules.js' { - declare module.exports: $Exports<'eslint/lib/load-rules'>; -} -declare module 'eslint/lib/options.js' { - declare module.exports: $Exports<'eslint/lib/options'>; -} -declare module 'eslint/lib/report-translator.js' { - declare module.exports: $Exports<'eslint/lib/report-translator'>; -} -declare module 'eslint/lib/rules.js' { - declare module.exports: $Exports<'eslint/lib/rules'>; -} -declare module 'eslint/lib/rules/accessor-pairs.js' { - declare module.exports: $Exports<'eslint/lib/rules/accessor-pairs'>; -} -declare module 'eslint/lib/rules/array-bracket-newline.js' { - declare module.exports: $Exports<'eslint/lib/rules/array-bracket-newline'>; -} -declare module 'eslint/lib/rules/array-bracket-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/array-bracket-spacing'>; -} -declare module 'eslint/lib/rules/array-callback-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/array-callback-return'>; -} -declare module 'eslint/lib/rules/array-element-newline.js' { - declare module.exports: $Exports<'eslint/lib/rules/array-element-newline'>; -} -declare module 'eslint/lib/rules/arrow-body-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/arrow-body-style'>; -} -declare module 'eslint/lib/rules/arrow-parens.js' { - declare module.exports: $Exports<'eslint/lib/rules/arrow-parens'>; -} -declare module 'eslint/lib/rules/arrow-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/arrow-spacing'>; -} -declare module 'eslint/lib/rules/block-scoped-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/block-scoped-var'>; -} -declare module 'eslint/lib/rules/block-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/block-spacing'>; -} -declare module 'eslint/lib/rules/brace-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/brace-style'>; -} -declare module 'eslint/lib/rules/callback-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/callback-return'>; -} -declare module 'eslint/lib/rules/camelcase.js' { - declare module.exports: $Exports<'eslint/lib/rules/camelcase'>; -} -declare module 'eslint/lib/rules/capitalized-comments.js' { - declare module.exports: $Exports<'eslint/lib/rules/capitalized-comments'>; -} -declare module 'eslint/lib/rules/class-methods-use-this.js' { - declare module.exports: $Exports<'eslint/lib/rules/class-methods-use-this'>; -} -declare module 'eslint/lib/rules/comma-dangle.js' { - declare module.exports: $Exports<'eslint/lib/rules/comma-dangle'>; -} -declare module 'eslint/lib/rules/comma-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/comma-spacing'>; -} -declare module 'eslint/lib/rules/comma-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/comma-style'>; -} -declare module 'eslint/lib/rules/complexity.js' { - declare module.exports: $Exports<'eslint/lib/rules/complexity'>; -} -declare module 'eslint/lib/rules/computed-property-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/computed-property-spacing'>; -} -declare module 'eslint/lib/rules/consistent-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/consistent-return'>; -} -declare module 'eslint/lib/rules/consistent-this.js' { - declare module.exports: $Exports<'eslint/lib/rules/consistent-this'>; -} -declare module 'eslint/lib/rules/constructor-super.js' { - declare module.exports: $Exports<'eslint/lib/rules/constructor-super'>; -} -declare module 'eslint/lib/rules/curly.js' { - declare module.exports: $Exports<'eslint/lib/rules/curly'>; -} -declare module 'eslint/lib/rules/default-case.js' { - declare module.exports: $Exports<'eslint/lib/rules/default-case'>; -} -declare module 'eslint/lib/rules/dot-location.js' { - declare module.exports: $Exports<'eslint/lib/rules/dot-location'>; -} -declare module 'eslint/lib/rules/dot-notation.js' { - declare module.exports: $Exports<'eslint/lib/rules/dot-notation'>; -} -declare module 'eslint/lib/rules/eol-last.js' { - declare module.exports: $Exports<'eslint/lib/rules/eol-last'>; -} -declare module 'eslint/lib/rules/eqeqeq.js' { - declare module.exports: $Exports<'eslint/lib/rules/eqeqeq'>; -} -declare module 'eslint/lib/rules/for-direction.js' { - declare module.exports: $Exports<'eslint/lib/rules/for-direction'>; -} -declare module 'eslint/lib/rules/func-call-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/func-call-spacing'>; -} -declare module 'eslint/lib/rules/func-name-matching.js' { - declare module.exports: $Exports<'eslint/lib/rules/func-name-matching'>; -} -declare module 'eslint/lib/rules/func-names.js' { - declare module.exports: $Exports<'eslint/lib/rules/func-names'>; -} -declare module 'eslint/lib/rules/func-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/func-style'>; -} -declare module 'eslint/lib/rules/function-paren-newline.js' { - declare module.exports: $Exports<'eslint/lib/rules/function-paren-newline'>; -} -declare module 'eslint/lib/rules/generator-star-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/generator-star-spacing'>; -} -declare module 'eslint/lib/rules/getter-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/getter-return'>; -} -declare module 'eslint/lib/rules/global-require.js' { - declare module.exports: $Exports<'eslint/lib/rules/global-require'>; -} -declare module 'eslint/lib/rules/guard-for-in.js' { - declare module.exports: $Exports<'eslint/lib/rules/guard-for-in'>; -} -declare module 'eslint/lib/rules/handle-callback-err.js' { - declare module.exports: $Exports<'eslint/lib/rules/handle-callback-err'>; -} -declare module 'eslint/lib/rules/id-blacklist.js' { - declare module.exports: $Exports<'eslint/lib/rules/id-blacklist'>; -} -declare module 'eslint/lib/rules/id-length.js' { - declare module.exports: $Exports<'eslint/lib/rules/id-length'>; -} -declare module 'eslint/lib/rules/id-match.js' { - declare module.exports: $Exports<'eslint/lib/rules/id-match'>; -} -declare module 'eslint/lib/rules/implicit-arrow-linebreak.js' { - declare module.exports: $Exports<'eslint/lib/rules/implicit-arrow-linebreak'>; -} -declare module 'eslint/lib/rules/indent-legacy.js' { - declare module.exports: $Exports<'eslint/lib/rules/indent-legacy'>; -} -declare module 'eslint/lib/rules/indent.js' { - declare module.exports: $Exports<'eslint/lib/rules/indent'>; -} -declare module 'eslint/lib/rules/init-declarations.js' { - declare module.exports: $Exports<'eslint/lib/rules/init-declarations'>; -} -declare module 'eslint/lib/rules/jsx-quotes.js' { - declare module.exports: $Exports<'eslint/lib/rules/jsx-quotes'>; -} -declare module 'eslint/lib/rules/key-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/key-spacing'>; -} -declare module 'eslint/lib/rules/keyword-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/keyword-spacing'>; -} -declare module 'eslint/lib/rules/line-comment-position.js' { - declare module.exports: $Exports<'eslint/lib/rules/line-comment-position'>; -} -declare module 'eslint/lib/rules/linebreak-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/linebreak-style'>; -} -declare module 'eslint/lib/rules/lines-around-comment.js' { - declare module.exports: $Exports<'eslint/lib/rules/lines-around-comment'>; -} -declare module 'eslint/lib/rules/lines-around-directive.js' { - declare module.exports: $Exports<'eslint/lib/rules/lines-around-directive'>; -} -declare module 'eslint/lib/rules/lines-between-class-members.js' { - declare module.exports: $Exports<'eslint/lib/rules/lines-between-class-members'>; -} -declare module 'eslint/lib/rules/max-classes-per-file.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-classes-per-file'>; -} -declare module 'eslint/lib/rules/max-depth.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-depth'>; -} -declare module 'eslint/lib/rules/max-len.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-len'>; -} -declare module 'eslint/lib/rules/max-lines-per-function.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-lines-per-function'>; -} -declare module 'eslint/lib/rules/max-lines.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-lines'>; -} -declare module 'eslint/lib/rules/max-nested-callbacks.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-nested-callbacks'>; -} -declare module 'eslint/lib/rules/max-params.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-params'>; -} -declare module 'eslint/lib/rules/max-statements-per-line.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-statements-per-line'>; -} -declare module 'eslint/lib/rules/max-statements.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-statements'>; -} -declare module 'eslint/lib/rules/multiline-comment-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/multiline-comment-style'>; -} -declare module 'eslint/lib/rules/multiline-ternary.js' { - declare module.exports: $Exports<'eslint/lib/rules/multiline-ternary'>; -} -declare module 'eslint/lib/rules/new-cap.js' { - declare module.exports: $Exports<'eslint/lib/rules/new-cap'>; -} -declare module 'eslint/lib/rules/new-parens.js' { - declare module.exports: $Exports<'eslint/lib/rules/new-parens'>; -} -declare module 'eslint/lib/rules/newline-after-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/newline-after-var'>; -} -declare module 'eslint/lib/rules/newline-before-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/newline-before-return'>; -} -declare module 'eslint/lib/rules/newline-per-chained-call.js' { - declare module.exports: $Exports<'eslint/lib/rules/newline-per-chained-call'>; -} -declare module 'eslint/lib/rules/no-alert.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-alert'>; -} -declare module 'eslint/lib/rules/no-array-constructor.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-array-constructor'>; -} -declare module 'eslint/lib/rules/no-async-promise-executor.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-async-promise-executor'>; -} -declare module 'eslint/lib/rules/no-await-in-loop.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-await-in-loop'>; -} -declare module 'eslint/lib/rules/no-bitwise.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-bitwise'>; -} -declare module 'eslint/lib/rules/no-buffer-constructor.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-buffer-constructor'>; -} -declare module 'eslint/lib/rules/no-caller.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-caller'>; -} -declare module 'eslint/lib/rules/no-case-declarations.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-case-declarations'>; -} -declare module 'eslint/lib/rules/no-catch-shadow.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-catch-shadow'>; -} -declare module 'eslint/lib/rules/no-class-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-class-assign'>; -} -declare module 'eslint/lib/rules/no-compare-neg-zero.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-compare-neg-zero'>; -} -declare module 'eslint/lib/rules/no-cond-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-cond-assign'>; -} -declare module 'eslint/lib/rules/no-confusing-arrow.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-confusing-arrow'>; -} -declare module 'eslint/lib/rules/no-console.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-console'>; -} -declare module 'eslint/lib/rules/no-const-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-const-assign'>; -} -declare module 'eslint/lib/rules/no-constant-condition.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-constant-condition'>; -} -declare module 'eslint/lib/rules/no-continue.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-continue'>; -} -declare module 'eslint/lib/rules/no-control-regex.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-control-regex'>; -} -declare module 'eslint/lib/rules/no-debugger.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-debugger'>; -} -declare module 'eslint/lib/rules/no-delete-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-delete-var'>; -} -declare module 'eslint/lib/rules/no-div-regex.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-div-regex'>; -} -declare module 'eslint/lib/rules/no-dupe-args.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-dupe-args'>; -} -declare module 'eslint/lib/rules/no-dupe-class-members.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-dupe-class-members'>; -} -declare module 'eslint/lib/rules/no-dupe-keys.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-dupe-keys'>; -} -declare module 'eslint/lib/rules/no-duplicate-case.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-duplicate-case'>; -} -declare module 'eslint/lib/rules/no-duplicate-imports.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-duplicate-imports'>; -} -declare module 'eslint/lib/rules/no-else-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-else-return'>; -} -declare module 'eslint/lib/rules/no-empty-character-class.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-empty-character-class'>; -} -declare module 'eslint/lib/rules/no-empty-function.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-empty-function'>; -} -declare module 'eslint/lib/rules/no-empty-pattern.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-empty-pattern'>; -} -declare module 'eslint/lib/rules/no-empty.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-empty'>; -} -declare module 'eslint/lib/rules/no-eq-null.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-eq-null'>; -} -declare module 'eslint/lib/rules/no-eval.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-eval'>; -} -declare module 'eslint/lib/rules/no-ex-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-ex-assign'>; -} -declare module 'eslint/lib/rules/no-extend-native.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extend-native'>; -} -declare module 'eslint/lib/rules/no-extra-bind.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extra-bind'>; -} -declare module 'eslint/lib/rules/no-extra-boolean-cast.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extra-boolean-cast'>; -} -declare module 'eslint/lib/rules/no-extra-label.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extra-label'>; -} -declare module 'eslint/lib/rules/no-extra-parens.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extra-parens'>; -} -declare module 'eslint/lib/rules/no-extra-semi.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extra-semi'>; -} -declare module 'eslint/lib/rules/no-fallthrough.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-fallthrough'>; -} -declare module 'eslint/lib/rules/no-floating-decimal.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-floating-decimal'>; -} -declare module 'eslint/lib/rules/no-func-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-func-assign'>; -} -declare module 'eslint/lib/rules/no-global-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-global-assign'>; -} -declare module 'eslint/lib/rules/no-implicit-coercion.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-implicit-coercion'>; -} -declare module 'eslint/lib/rules/no-implicit-globals.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-implicit-globals'>; -} -declare module 'eslint/lib/rules/no-implied-eval.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-implied-eval'>; -} -declare module 'eslint/lib/rules/no-inline-comments.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-inline-comments'>; -} -declare module 'eslint/lib/rules/no-inner-declarations.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-inner-declarations'>; -} -declare module 'eslint/lib/rules/no-invalid-regexp.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-invalid-regexp'>; -} -declare module 'eslint/lib/rules/no-invalid-this.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-invalid-this'>; -} -declare module 'eslint/lib/rules/no-irregular-whitespace.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-irregular-whitespace'>; -} -declare module 'eslint/lib/rules/no-iterator.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-iterator'>; -} -declare module 'eslint/lib/rules/no-label-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-label-var'>; -} -declare module 'eslint/lib/rules/no-labels.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-labels'>; -} -declare module 'eslint/lib/rules/no-lone-blocks.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-lone-blocks'>; -} -declare module 'eslint/lib/rules/no-lonely-if.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-lonely-if'>; -} -declare module 'eslint/lib/rules/no-loop-func.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-loop-func'>; -} -declare module 'eslint/lib/rules/no-magic-numbers.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-magic-numbers'>; -} -declare module 'eslint/lib/rules/no-misleading-character-class.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-misleading-character-class'>; -} -declare module 'eslint/lib/rules/no-mixed-operators.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-mixed-operators'>; -} -declare module 'eslint/lib/rules/no-mixed-requires.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-mixed-requires'>; -} -declare module 'eslint/lib/rules/no-mixed-spaces-and-tabs.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-mixed-spaces-and-tabs'>; -} -declare module 'eslint/lib/rules/no-multi-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-multi-assign'>; -} -declare module 'eslint/lib/rules/no-multi-spaces.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-multi-spaces'>; -} -declare module 'eslint/lib/rules/no-multi-str.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-multi-str'>; -} -declare module 'eslint/lib/rules/no-multiple-empty-lines.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-multiple-empty-lines'>; -} -declare module 'eslint/lib/rules/no-native-reassign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-native-reassign'>; -} -declare module 'eslint/lib/rules/no-negated-condition.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-negated-condition'>; -} -declare module 'eslint/lib/rules/no-negated-in-lhs.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-negated-in-lhs'>; -} -declare module 'eslint/lib/rules/no-nested-ternary.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-nested-ternary'>; -} -declare module 'eslint/lib/rules/no-new-func.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new-func'>; -} -declare module 'eslint/lib/rules/no-new-object.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new-object'>; -} -declare module 'eslint/lib/rules/no-new-require.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new-require'>; -} -declare module 'eslint/lib/rules/no-new-symbol.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new-symbol'>; -} -declare module 'eslint/lib/rules/no-new-wrappers.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new-wrappers'>; -} -declare module 'eslint/lib/rules/no-new.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new'>; -} -declare module 'eslint/lib/rules/no-obj-calls.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-obj-calls'>; -} -declare module 'eslint/lib/rules/no-octal-escape.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-octal-escape'>; -} -declare module 'eslint/lib/rules/no-octal.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-octal'>; -} -declare module 'eslint/lib/rules/no-param-reassign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-param-reassign'>; -} -declare module 'eslint/lib/rules/no-path-concat.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-path-concat'>; -} -declare module 'eslint/lib/rules/no-plusplus.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-plusplus'>; -} -declare module 'eslint/lib/rules/no-process-env.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-process-env'>; -} -declare module 'eslint/lib/rules/no-process-exit.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-process-exit'>; -} -declare module 'eslint/lib/rules/no-proto.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-proto'>; -} -declare module 'eslint/lib/rules/no-prototype-builtins.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-prototype-builtins'>; -} -declare module 'eslint/lib/rules/no-redeclare.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-redeclare'>; -} -declare module 'eslint/lib/rules/no-regex-spaces.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-regex-spaces'>; -} -declare module 'eslint/lib/rules/no-restricted-globals.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-restricted-globals'>; -} -declare module 'eslint/lib/rules/no-restricted-imports.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-restricted-imports'>; -} -declare module 'eslint/lib/rules/no-restricted-modules.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-restricted-modules'>; -} -declare module 'eslint/lib/rules/no-restricted-properties.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-restricted-properties'>; -} -declare module 'eslint/lib/rules/no-restricted-syntax.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-restricted-syntax'>; -} -declare module 'eslint/lib/rules/no-return-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-return-assign'>; -} -declare module 'eslint/lib/rules/no-return-await.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-return-await'>; -} -declare module 'eslint/lib/rules/no-script-url.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-script-url'>; -} -declare module 'eslint/lib/rules/no-self-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-self-assign'>; -} -declare module 'eslint/lib/rules/no-self-compare.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-self-compare'>; -} -declare module 'eslint/lib/rules/no-sequences.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-sequences'>; -} -declare module 'eslint/lib/rules/no-shadow-restricted-names.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-shadow-restricted-names'>; -} -declare module 'eslint/lib/rules/no-shadow.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-shadow'>; -} -declare module 'eslint/lib/rules/no-spaced-func.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-spaced-func'>; -} -declare module 'eslint/lib/rules/no-sparse-arrays.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-sparse-arrays'>; -} -declare module 'eslint/lib/rules/no-sync.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-sync'>; -} -declare module 'eslint/lib/rules/no-tabs.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-tabs'>; -} -declare module 'eslint/lib/rules/no-template-curly-in-string.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-template-curly-in-string'>; -} -declare module 'eslint/lib/rules/no-ternary.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-ternary'>; -} -declare module 'eslint/lib/rules/no-this-before-super.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-this-before-super'>; -} -declare module 'eslint/lib/rules/no-throw-literal.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-throw-literal'>; -} -declare module 'eslint/lib/rules/no-trailing-spaces.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-trailing-spaces'>; -} -declare module 'eslint/lib/rules/no-undef-init.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-undef-init'>; -} -declare module 'eslint/lib/rules/no-undef.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-undef'>; -} -declare module 'eslint/lib/rules/no-undefined.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-undefined'>; -} -declare module 'eslint/lib/rules/no-underscore-dangle.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-underscore-dangle'>; -} -declare module 'eslint/lib/rules/no-unexpected-multiline.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unexpected-multiline'>; -} -declare module 'eslint/lib/rules/no-unmodified-loop-condition.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unmodified-loop-condition'>; -} -declare module 'eslint/lib/rules/no-unneeded-ternary.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unneeded-ternary'>; -} -declare module 'eslint/lib/rules/no-unreachable.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unreachable'>; -} -declare module 'eslint/lib/rules/no-unsafe-finally.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unsafe-finally'>; -} -declare module 'eslint/lib/rules/no-unsafe-negation.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unsafe-negation'>; -} -declare module 'eslint/lib/rules/no-unused-expressions.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unused-expressions'>; -} -declare module 'eslint/lib/rules/no-unused-labels.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unused-labels'>; -} -declare module 'eslint/lib/rules/no-unused-vars.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unused-vars'>; -} -declare module 'eslint/lib/rules/no-use-before-define.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-use-before-define'>; -} -declare module 'eslint/lib/rules/no-useless-call.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-call'>; -} -declare module 'eslint/lib/rules/no-useless-computed-key.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-computed-key'>; -} -declare module 'eslint/lib/rules/no-useless-concat.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-concat'>; -} -declare module 'eslint/lib/rules/no-useless-constructor.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-constructor'>; -} -declare module 'eslint/lib/rules/no-useless-escape.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-escape'>; -} -declare module 'eslint/lib/rules/no-useless-rename.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-rename'>; -} -declare module 'eslint/lib/rules/no-useless-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-return'>; -} -declare module 'eslint/lib/rules/no-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-var'>; -} -declare module 'eslint/lib/rules/no-void.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-void'>; -} -declare module 'eslint/lib/rules/no-warning-comments.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-warning-comments'>; -} -declare module 'eslint/lib/rules/no-whitespace-before-property.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-whitespace-before-property'>; -} -declare module 'eslint/lib/rules/no-with.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-with'>; -} -declare module 'eslint/lib/rules/nonblock-statement-body-position.js' { - declare module.exports: $Exports<'eslint/lib/rules/nonblock-statement-body-position'>; -} -declare module 'eslint/lib/rules/object-curly-newline.js' { - declare module.exports: $Exports<'eslint/lib/rules/object-curly-newline'>; -} -declare module 'eslint/lib/rules/object-curly-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/object-curly-spacing'>; -} -declare module 'eslint/lib/rules/object-property-newline.js' { - declare module.exports: $Exports<'eslint/lib/rules/object-property-newline'>; -} -declare module 'eslint/lib/rules/object-shorthand.js' { - declare module.exports: $Exports<'eslint/lib/rules/object-shorthand'>; -} -declare module 'eslint/lib/rules/one-var-declaration-per-line.js' { - declare module.exports: $Exports<'eslint/lib/rules/one-var-declaration-per-line'>; -} -declare module 'eslint/lib/rules/one-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/one-var'>; -} -declare module 'eslint/lib/rules/operator-assignment.js' { - declare module.exports: $Exports<'eslint/lib/rules/operator-assignment'>; -} -declare module 'eslint/lib/rules/operator-linebreak.js' { - declare module.exports: $Exports<'eslint/lib/rules/operator-linebreak'>; -} -declare module 'eslint/lib/rules/padded-blocks.js' { - declare module.exports: $Exports<'eslint/lib/rules/padded-blocks'>; -} -declare module 'eslint/lib/rules/padding-line-between-statements.js' { - declare module.exports: $Exports<'eslint/lib/rules/padding-line-between-statements'>; -} -declare module 'eslint/lib/rules/prefer-arrow-callback.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-arrow-callback'>; -} -declare module 'eslint/lib/rules/prefer-const.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-const'>; -} -declare module 'eslint/lib/rules/prefer-destructuring.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-destructuring'>; -} -declare module 'eslint/lib/rules/prefer-numeric-literals.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-numeric-literals'>; -} -declare module 'eslint/lib/rules/prefer-object-spread.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-object-spread'>; -} -declare module 'eslint/lib/rules/prefer-promise-reject-errors.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-promise-reject-errors'>; -} -declare module 'eslint/lib/rules/prefer-reflect.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-reflect'>; -} -declare module 'eslint/lib/rules/prefer-rest-params.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-rest-params'>; -} -declare module 'eslint/lib/rules/prefer-spread.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-spread'>; -} -declare module 'eslint/lib/rules/prefer-template.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-template'>; -} -declare module 'eslint/lib/rules/quote-props.js' { - declare module.exports: $Exports<'eslint/lib/rules/quote-props'>; -} -declare module 'eslint/lib/rules/quotes.js' { - declare module.exports: $Exports<'eslint/lib/rules/quotes'>; -} -declare module 'eslint/lib/rules/radix.js' { - declare module.exports: $Exports<'eslint/lib/rules/radix'>; -} -declare module 'eslint/lib/rules/require-atomic-updates.js' { - declare module.exports: $Exports<'eslint/lib/rules/require-atomic-updates'>; -} -declare module 'eslint/lib/rules/require-await.js' { - declare module.exports: $Exports<'eslint/lib/rules/require-await'>; -} -declare module 'eslint/lib/rules/require-jsdoc.js' { - declare module.exports: $Exports<'eslint/lib/rules/require-jsdoc'>; -} -declare module 'eslint/lib/rules/require-unicode-regexp.js' { - declare module.exports: $Exports<'eslint/lib/rules/require-unicode-regexp'>; -} -declare module 'eslint/lib/rules/require-yield.js' { - declare module.exports: $Exports<'eslint/lib/rules/require-yield'>; -} -declare module 'eslint/lib/rules/rest-spread-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/rest-spread-spacing'>; -} -declare module 'eslint/lib/rules/semi-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/semi-spacing'>; -} -declare module 'eslint/lib/rules/semi-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/semi-style'>; -} -declare module 'eslint/lib/rules/semi.js' { - declare module.exports: $Exports<'eslint/lib/rules/semi'>; -} -declare module 'eslint/lib/rules/sort-imports.js' { - declare module.exports: $Exports<'eslint/lib/rules/sort-imports'>; -} -declare module 'eslint/lib/rules/sort-keys.js' { - declare module.exports: $Exports<'eslint/lib/rules/sort-keys'>; -} -declare module 'eslint/lib/rules/sort-vars.js' { - declare module.exports: $Exports<'eslint/lib/rules/sort-vars'>; -} -declare module 'eslint/lib/rules/space-before-blocks.js' { - declare module.exports: $Exports<'eslint/lib/rules/space-before-blocks'>; -} -declare module 'eslint/lib/rules/space-before-function-paren.js' { - declare module.exports: $Exports<'eslint/lib/rules/space-before-function-paren'>; -} -declare module 'eslint/lib/rules/space-in-parens.js' { - declare module.exports: $Exports<'eslint/lib/rules/space-in-parens'>; -} -declare module 'eslint/lib/rules/space-infix-ops.js' { - declare module.exports: $Exports<'eslint/lib/rules/space-infix-ops'>; -} -declare module 'eslint/lib/rules/space-unary-ops.js' { - declare module.exports: $Exports<'eslint/lib/rules/space-unary-ops'>; -} -declare module 'eslint/lib/rules/spaced-comment.js' { - declare module.exports: $Exports<'eslint/lib/rules/spaced-comment'>; -} -declare module 'eslint/lib/rules/strict.js' { - declare module.exports: $Exports<'eslint/lib/rules/strict'>; -} -declare module 'eslint/lib/rules/switch-colon-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/switch-colon-spacing'>; -} -declare module 'eslint/lib/rules/symbol-description.js' { - declare module.exports: $Exports<'eslint/lib/rules/symbol-description'>; -} -declare module 'eslint/lib/rules/template-curly-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/template-curly-spacing'>; -} -declare module 'eslint/lib/rules/template-tag-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/template-tag-spacing'>; -} -declare module 'eslint/lib/rules/unicode-bom.js' { - declare module.exports: $Exports<'eslint/lib/rules/unicode-bom'>; -} -declare module 'eslint/lib/rules/use-isnan.js' { - declare module.exports: $Exports<'eslint/lib/rules/use-isnan'>; -} -declare module 'eslint/lib/rules/valid-jsdoc.js' { - declare module.exports: $Exports<'eslint/lib/rules/valid-jsdoc'>; -} -declare module 'eslint/lib/rules/valid-typeof.js' { - declare module.exports: $Exports<'eslint/lib/rules/valid-typeof'>; -} -declare module 'eslint/lib/rules/vars-on-top.js' { - declare module.exports: $Exports<'eslint/lib/rules/vars-on-top'>; -} -declare module 'eslint/lib/rules/wrap-iife.js' { - declare module.exports: $Exports<'eslint/lib/rules/wrap-iife'>; -} -declare module 'eslint/lib/rules/wrap-regex.js' { - declare module.exports: $Exports<'eslint/lib/rules/wrap-regex'>; -} -declare module 'eslint/lib/rules/yield-star-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/yield-star-spacing'>; -} -declare module 'eslint/lib/rules/yoda.js' { - declare module.exports: $Exports<'eslint/lib/rules/yoda'>; -} -declare module 'eslint/lib/testers/rule-tester.js' { - declare module.exports: $Exports<'eslint/lib/testers/rule-tester'>; -} -declare module 'eslint/lib/token-store/backward-token-comment-cursor.js' { - declare module.exports: $Exports<'eslint/lib/token-store/backward-token-comment-cursor'>; -} -declare module 'eslint/lib/token-store/backward-token-cursor.js' { - declare module.exports: $Exports<'eslint/lib/token-store/backward-token-cursor'>; -} -declare module 'eslint/lib/token-store/cursor.js' { - declare module.exports: $Exports<'eslint/lib/token-store/cursor'>; -} -declare module 'eslint/lib/token-store/cursors.js' { - declare module.exports: $Exports<'eslint/lib/token-store/cursors'>; -} -declare module 'eslint/lib/token-store/decorative-cursor.js' { - declare module.exports: $Exports<'eslint/lib/token-store/decorative-cursor'>; -} -declare module 'eslint/lib/token-store/filter-cursor.js' { - declare module.exports: $Exports<'eslint/lib/token-store/filter-cursor'>; -} -declare module 'eslint/lib/token-store/forward-token-comment-cursor.js' { - declare module.exports: $Exports<'eslint/lib/token-store/forward-token-comment-cursor'>; -} -declare module 'eslint/lib/token-store/forward-token-cursor.js' { - declare module.exports: $Exports<'eslint/lib/token-store/forward-token-cursor'>; -} -declare module 'eslint/lib/token-store/index.js' { - declare module.exports: $Exports<'eslint/lib/token-store/index'>; -} -declare module 'eslint/lib/token-store/limit-cursor.js' { - declare module.exports: $Exports<'eslint/lib/token-store/limit-cursor'>; -} -declare module 'eslint/lib/token-store/padded-token-cursor.js' { - declare module.exports: $Exports<'eslint/lib/token-store/padded-token-cursor'>; -} -declare module 'eslint/lib/token-store/skip-cursor.js' { - declare module.exports: $Exports<'eslint/lib/token-store/skip-cursor'>; -} -declare module 'eslint/lib/token-store/utils.js' { - declare module.exports: $Exports<'eslint/lib/token-store/utils'>; -} -declare module 'eslint/lib/util/ajv.js' { - declare module.exports: $Exports<'eslint/lib/util/ajv'>; -} -declare module 'eslint/lib/util/apply-disable-directives.js' { - declare module.exports: $Exports<'eslint/lib/util/apply-disable-directives'>; -} -declare module 'eslint/lib/util/ast-utils.js' { - declare module.exports: $Exports<'eslint/lib/util/ast-utils'>; -} -declare module 'eslint/lib/util/file-finder.js' { - declare module.exports: $Exports<'eslint/lib/util/file-finder'>; -} -declare module 'eslint/lib/util/fix-tracker.js' { - declare module.exports: $Exports<'eslint/lib/util/fix-tracker'>; -} -declare module 'eslint/lib/util/glob-utils.js' { - declare module.exports: $Exports<'eslint/lib/util/glob-utils'>; -} -declare module 'eslint/lib/util/glob.js' { - declare module.exports: $Exports<'eslint/lib/util/glob'>; -} -declare module 'eslint/lib/util/hash.js' { - declare module.exports: $Exports<'eslint/lib/util/hash'>; -} -declare module 'eslint/lib/util/interpolate.js' { - declare module.exports: $Exports<'eslint/lib/util/interpolate'>; -} -declare module 'eslint/lib/util/keywords.js' { - declare module.exports: $Exports<'eslint/lib/util/keywords'>; -} -declare module 'eslint/lib/util/lint-result-cache.js' { - declare module.exports: $Exports<'eslint/lib/util/lint-result-cache'>; -} -declare module 'eslint/lib/util/logging.js' { - declare module.exports: $Exports<'eslint/lib/util/logging'>; -} -declare module 'eslint/lib/util/module-resolver.js' { - declare module.exports: $Exports<'eslint/lib/util/module-resolver'>; -} -declare module 'eslint/lib/util/naming.js' { - declare module.exports: $Exports<'eslint/lib/util/naming'>; -} -declare module 'eslint/lib/util/node-event-generator.js' { - declare module.exports: $Exports<'eslint/lib/util/node-event-generator'>; -} -declare module 'eslint/lib/util/npm-utils.js' { - declare module.exports: $Exports<'eslint/lib/util/npm-utils'>; -} -declare module 'eslint/lib/util/path-utils.js' { - declare module.exports: $Exports<'eslint/lib/util/path-utils'>; -} -declare module 'eslint/lib/util/patterns/letters.js' { - declare module.exports: $Exports<'eslint/lib/util/patterns/letters'>; -} -declare module 'eslint/lib/util/rule-fixer.js' { - declare module.exports: $Exports<'eslint/lib/util/rule-fixer'>; -} -declare module 'eslint/lib/util/safe-emitter.js' { - declare module.exports: $Exports<'eslint/lib/util/safe-emitter'>; -} -declare module 'eslint/lib/util/source-code-fixer.js' { - declare module.exports: $Exports<'eslint/lib/util/source-code-fixer'>; -} -declare module 'eslint/lib/util/source-code-utils.js' { - declare module.exports: $Exports<'eslint/lib/util/source-code-utils'>; -} -declare module 'eslint/lib/util/source-code.js' { - declare module.exports: $Exports<'eslint/lib/util/source-code'>; -} -declare module 'eslint/lib/util/timing.js' { - declare module.exports: $Exports<'eslint/lib/util/timing'>; -} -declare module 'eslint/lib/util/traverser.js' { - declare module.exports: $Exports<'eslint/lib/util/traverser'>; -} -declare module 'eslint/lib/util/unicode/index.js' { - declare module.exports: $Exports<'eslint/lib/util/unicode/index'>; -} -declare module 'eslint/lib/util/unicode/is-combining-character.js' { - declare module.exports: $Exports<'eslint/lib/util/unicode/is-combining-character'>; -} -declare module 'eslint/lib/util/unicode/is-emoji-modifier.js' { - declare module.exports: $Exports<'eslint/lib/util/unicode/is-emoji-modifier'>; -} -declare module 'eslint/lib/util/unicode/is-regional-indicator-symbol.js' { - declare module.exports: $Exports<'eslint/lib/util/unicode/is-regional-indicator-symbol'>; -} -declare module 'eslint/lib/util/unicode/is-surrogate-pair.js' { - declare module.exports: $Exports<'eslint/lib/util/unicode/is-surrogate-pair'>; -} -declare module 'eslint/lib/util/xml-escape.js' { - declare module.exports: $Exports<'eslint/lib/util/xml-escape'>; -} diff --git a/flow-typed/npm/eventemitter3_v3.x.x.js b/flow-typed/npm/eventemitter3_v3.x.x.js deleted file mode 100644 index 11aad19..0000000 --- a/flow-typed/npm/eventemitter3_v3.x.x.js +++ /dev/null @@ -1,29 +0,0 @@ -// flow-typed signature: e0e60921e1438e658e9a94a81829c155 -// flow-typed version: a90ebf442a/eventemitter3_v3.x.x/flow_>=v0.25.x - -declare module 'eventemitter3' { - declare type ListenerFn = (...args: any[]) => void - declare class EventEmitter { - static constructor(): EventEmitter, - static prefixed: string | boolean, - eventNames(): (string | Symbol)[], - listeners(event: string | Symbol): ListenerFn[], - listenerCount(event: string | Symbol): number, - on(event: string | Symbol, listener: ListenerFn, context?: any): this, - addListener(event: string | Symbol, listener: ListenerFn, context?: any): this, - once(event: string | Symbol, listener: ListenerFn, context?: any): this, - removeAllListeners(event?: string | Symbol): this, - removeListener(event: string | Symbol, listener?: ListenerFn, context?: any, once?: boolean): this, - off(event: string | Symbol, listener?: ListenerFn, context?: any, once?: boolean): this, - emit(event: string, ...params?: any[]): this - } - declare module.exports: Class -} - -// Filename aliases -declare module 'eventemitter3/index' { - declare module.exports: $Exports<'eventemitter3'> -} -declare module 'eventemitter3/index.js' { - declare module.exports: $Exports<'eventemitter3'> -} diff --git a/flow-typed/npm/fast-redux_vx.x.x.js b/flow-typed/npm/fast-redux_vx.x.x.js deleted file mode 100644 index 8632149..0000000 --- a/flow-typed/npm/fast-redux_vx.x.x.js +++ /dev/null @@ -1,123 +0,0 @@ -// flow-typed signature: e8145f7f4fa94963b20c369e3e852cb5 -// flow-typed version: <>/fast-redux_v^0.7.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'fast-redux' - * - * 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 'fast-redux' { - 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 'fast-redux/dist/fast-redux' { - declare module.exports: any; -} - -declare module 'fast-redux/dist/fast-redux.min' { - declare module.exports: any; -} - -declare module 'fast-redux/es/index' { - declare module.exports: any; -} - -declare module 'fast-redux/es/namespace' { - declare module.exports: any; -} - -declare module 'fast-redux/es/object' { - declare module.exports: any; -} - -declare module 'fast-redux/es/rootReducer' { - declare module.exports: any; -} - -declare module 'fast-redux/lib/index' { - declare module.exports: any; -} - -declare module 'fast-redux/lib/namespace' { - declare module.exports: any; -} - -declare module 'fast-redux/lib/object' { - declare module.exports: any; -} - -declare module 'fast-redux/lib/rootReducer' { - declare module.exports: any; -} - -declare module 'fast-redux/src/index' { - declare module.exports: any; -} - -declare module 'fast-redux/src/namespace' { - declare module.exports: any; -} - -declare module 'fast-redux/src/object' { - declare module.exports: any; -} - -declare module 'fast-redux/src/rootReducer' { - declare module.exports: any; -} - -// Filename aliases -declare module 'fast-redux/dist/fast-redux.js' { - declare module.exports: $Exports<'fast-redux/dist/fast-redux'>; -} -declare module 'fast-redux/dist/fast-redux.min.js' { - declare module.exports: $Exports<'fast-redux/dist/fast-redux.min'>; -} -declare module 'fast-redux/es/index.js' { - declare module.exports: $Exports<'fast-redux/es/index'>; -} -declare module 'fast-redux/es/namespace.js' { - declare module.exports: $Exports<'fast-redux/es/namespace'>; -} -declare module 'fast-redux/es/object.js' { - declare module.exports: $Exports<'fast-redux/es/object'>; -} -declare module 'fast-redux/es/rootReducer.js' { - declare module.exports: $Exports<'fast-redux/es/rootReducer'>; -} -declare module 'fast-redux/lib/index.js' { - declare module.exports: $Exports<'fast-redux/lib/index'>; -} -declare module 'fast-redux/lib/namespace.js' { - declare module.exports: $Exports<'fast-redux/lib/namespace'>; -} -declare module 'fast-redux/lib/object.js' { - declare module.exports: $Exports<'fast-redux/lib/object'>; -} -declare module 'fast-redux/lib/rootReducer.js' { - declare module.exports: $Exports<'fast-redux/lib/rootReducer'>; -} -declare module 'fast-redux/src/index.js' { - declare module.exports: $Exports<'fast-redux/src/index'>; -} -declare module 'fast-redux/src/namespace.js' { - declare module.exports: $Exports<'fast-redux/src/namespace'>; -} -declare module 'fast-redux/src/object.js' { - declare module.exports: $Exports<'fast-redux/src/object'>; -} -declare module 'fast-redux/src/rootReducer.js' { - declare module.exports: $Exports<'fast-redux/src/rootReducer'>; -} diff --git a/flow-typed/npm/flow-bin_v0.x.x.js b/flow-typed/npm/flow-bin_v0.x.x.js deleted file mode 100644 index 7418f04..0000000 --- a/flow-typed/npm/flow-bin_v0.x.x.js +++ /dev/null @@ -1,6 +0,0 @@ -// 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; -} diff --git a/flow-typed/npm/flow-typed_vx.x.x.js b/flow-typed/npm/flow-typed_vx.x.x.js deleted file mode 100644 index 110995e..0000000 --- a/flow-typed/npm/flow-typed_vx.x.x.js +++ /dev/null @@ -1,193 +0,0 @@ -// flow-typed signature: f3ae05820edaf0274406f3fe2a57a6cd -// flow-typed version: <>/flow-typed_v^2.5.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'flow-typed' - * - * 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 'flow-typed' { - 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 'flow-typed/dist/cli' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/create-stub' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/install' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/runTests' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/search' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/update-cache' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/update' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/validateDefs' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/version' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/cacheRepoUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/codeSign' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/fileUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/flowProjectUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/flowVersion' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/git' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/github' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/isInFlowTypedRepo' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/libDefs' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/node' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/npm/npmLibDefs' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/npm/npmProjectUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/semver' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/stubUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/validationErrors' { - declare module.exports: any; -} - -// Filename aliases -declare module 'flow-typed/dist/cli.js' { - declare module.exports: $Exports<'flow-typed/dist/cli'>; -} -declare module 'flow-typed/dist/commands/create-stub.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/create-stub'>; -} -declare module 'flow-typed/dist/commands/install.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/install'>; -} -declare module 'flow-typed/dist/commands/runTests.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/runTests'>; -} -declare module 'flow-typed/dist/commands/search.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/search'>; -} -declare module 'flow-typed/dist/commands/update-cache.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/update-cache'>; -} -declare module 'flow-typed/dist/commands/update.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/update'>; -} -declare module 'flow-typed/dist/commands/validateDefs.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/validateDefs'>; -} -declare module 'flow-typed/dist/commands/version.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/version'>; -} -declare module 'flow-typed/dist/lib/cacheRepoUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/cacheRepoUtils'>; -} -declare module 'flow-typed/dist/lib/codeSign.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/codeSign'>; -} -declare module 'flow-typed/dist/lib/fileUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/fileUtils'>; -} -declare module 'flow-typed/dist/lib/flowProjectUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/flowProjectUtils'>; -} -declare module 'flow-typed/dist/lib/flowVersion.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/flowVersion'>; -} -declare module 'flow-typed/dist/lib/git.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/git'>; -} -declare module 'flow-typed/dist/lib/github.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/github'>; -} -declare module 'flow-typed/dist/lib/isInFlowTypedRepo.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/isInFlowTypedRepo'>; -} -declare module 'flow-typed/dist/lib/libDefs.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/libDefs'>; -} -declare module 'flow-typed/dist/lib/node.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/node'>; -} -declare module 'flow-typed/dist/lib/npm/npmLibDefs.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/npm/npmLibDefs'>; -} -declare module 'flow-typed/dist/lib/npm/npmProjectUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/npm/npmProjectUtils'>; -} -declare module 'flow-typed/dist/lib/semver.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/semver'>; -} -declare module 'flow-typed/dist/lib/stubUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/stubUtils'>; -} -declare module 'flow-typed/dist/lib/validationErrors.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/validationErrors'>; -} diff --git a/flow-typed/npm/fnv-plus_vx.x.x.js b/flow-typed/npm/fnv-plus_vx.x.x.js deleted file mode 100644 index f6f41c5..0000000 --- a/flow-typed/npm/fnv-plus_vx.x.x.js +++ /dev/null @@ -1,38 +0,0 @@ -// flow-typed signature: 1c08784b6a012c1b27c4f356abcf4857 -// flow-typed version: <>/fnv-plus_v^1.2.12/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'fnv-plus' - * - * 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 'fnv-plus' { - 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 'fnv-plus/test/fnv-plus' { - declare module.exports: any; -} - -// Filename aliases -declare module 'fnv-plus/index' { - declare module.exports: $Exports<'fnv-plus'>; -} -declare module 'fnv-plus/index.js' { - declare module.exports: $Exports<'fnv-plus'>; -} -declare module 'fnv-plus/test/fnv-plus.js' { - declare module.exports: $Exports<'fnv-plus/test/fnv-plus'>; -} diff --git a/flow-typed/npm/glob_v7.1.x.js b/flow-typed/npm/glob_v7.1.x.js deleted file mode 100644 index d6381e6..0000000 --- a/flow-typed/npm/glob_v7.1.x.js +++ /dev/null @@ -1,87 +0,0 @@ -// flow-typed signature: 7c09aef8ac07163d6ef9e3f50c6bc35c -// flow-typed version: a12a42a747/glob_v7.1.x/flow_>=v0.42.x - -declare module 'glob' { - declare type MinimatchOptions = {| - debug?: boolean, - nobrace?: boolean, - noglobstar?: boolean, - dot?: boolean, - noext?: boolean, - nocase?: boolean, - nonull?: boolean, - matchBase?: boolean, - nocomment?: boolean, - nonegate?: boolean, - flipNegate?: boolean - |}; - - declare type Options = {| - ...MinimatchOptions, - cwd?: string, - root?: string, - nomount?: boolean, - mark?: boolean, - nosort?: boolean, - stat?: boolean, - silent?: boolean, - strict?: boolean, - cache?: { - [path: string]: boolean | "DIR" | "FILE" | $ReadOnlyArray - }, - statCache?: { - [path: string]: boolean | { isDirectory(): boolean } | void - }, - symlinks?: { [path: string]: boolean | void }, - realpathCache?: { [path: string]: string }, - sync?: boolean, - nounique?: boolean, - nodir?: boolean, - ignore?: string | $ReadOnlyArray, - follow?: boolean, - realpath?: boolean, - absolute?: boolean - |}; - - /** - * Called when an error occurs, or matches are found - * err - * matches: filenames found matching the pattern - */ - declare type CallBack = (err: ?Error, matches: Array) => void; - - declare class Glob extends events$EventEmitter { - constructor(pattern: string): this; - constructor(pattern: string, callback: CallBack): this; - constructor(pattern: string, options: Options, callback: CallBack): this; - - minimatch: {}; - options: Options; - aborted: boolean; - cache: { - [path: string]: boolean | "DIR" | "FILE" | $ReadOnlyArray - }; - statCache: { - [path: string]: boolean | { isDirectory(): boolean } | void - }; - symlinks: { [path: string]: boolean | void }; - realpathCache: { [path: string]: string }; - found: Array; - - pause(): void; - resume(): void; - abort(): void; - } - - declare class GlobModule { - Glob: Class; - - (pattern: string, callback: CallBack): void; - (pattern: string, options: Options, callback: CallBack): void; - - hasMagic(pattern: string, options?: Options): boolean; - sync(pattern: string, options?: Options): Array; - } - - declare module.exports: GlobModule; -} diff --git a/flow-typed/npm/husky_vx.x.x.js b/flow-typed/npm/husky_vx.x.x.js deleted file mode 100644 index 3a98803..0000000 --- a/flow-typed/npm/husky_vx.x.x.js +++ /dev/null @@ -1,109 +0,0 @@ -// flow-typed signature: 9940d527af68cc8afd454132fd439fae -// flow-typed version: <>/husky_v^1.3.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'husky' - * - * 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 'husky' { - 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 'husky/husky' { - declare module.exports: any; -} - -declare module 'husky/lib/getConf' { - declare module.exports: any; -} - -declare module 'husky/lib/installer/bin' { - declare module.exports: any; -} - -declare module 'husky/lib/installer/getScript' { - declare module.exports: any; -} - -declare module 'husky/lib/installer/index' { - declare module.exports: any; -} - -declare module 'husky/lib/installer/is' { - declare module.exports: any; -} - -declare module 'husky/lib/installer/resolveGitDir' { - declare module.exports: any; -} - -declare module 'husky/lib/runner/bin' { - declare module.exports: any; -} - -declare module 'husky/lib/runner/index' { - declare module.exports: any; -} - -declare module 'husky/lib/upgrader/bin' { - declare module.exports: any; -} - -declare module 'husky/lib/upgrader/index' { - declare module.exports: any; -} - -declare module 'husky/run' { - declare module.exports: any; -} - -// Filename aliases -declare module 'husky/husky.js' { - declare module.exports: $Exports<'husky/husky'>; -} -declare module 'husky/lib/getConf.js' { - declare module.exports: $Exports<'husky/lib/getConf'>; -} -declare module 'husky/lib/installer/bin.js' { - declare module.exports: $Exports<'husky/lib/installer/bin'>; -} -declare module 'husky/lib/installer/getScript.js' { - declare module.exports: $Exports<'husky/lib/installer/getScript'>; -} -declare module 'husky/lib/installer/index.js' { - declare module.exports: $Exports<'husky/lib/installer/index'>; -} -declare module 'husky/lib/installer/is.js' { - declare module.exports: $Exports<'husky/lib/installer/is'>; -} -declare module 'husky/lib/installer/resolveGitDir.js' { - declare module.exports: $Exports<'husky/lib/installer/resolveGitDir'>; -} -declare module 'husky/lib/runner/bin.js' { - declare module.exports: $Exports<'husky/lib/runner/bin'>; -} -declare module 'husky/lib/runner/index.js' { - declare module.exports: $Exports<'husky/lib/runner/index'>; -} -declare module 'husky/lib/upgrader/bin.js' { - declare module.exports: $Exports<'husky/lib/upgrader/bin'>; -} -declare module 'husky/lib/upgrader/index.js' { - declare module.exports: $Exports<'husky/lib/upgrader/index'>; -} -declare module 'husky/run.js' { - declare module.exports: $Exports<'husky/run'>; -} diff --git a/flow-typed/npm/invariant_v2.x.x.js b/flow-typed/npm/invariant_v2.x.x.js deleted file mode 100644 index 6322178..0000000 --- a/flow-typed/npm/invariant_v2.x.x.js +++ /dev/null @@ -1,6 +0,0 @@ -// flow-typed signature: 60de437d85342dea19dcd82c5a50f88a -// flow-typed version: da30fe6876/invariant_v2.x.x/flow_>=v0.33.x - -declare module invariant { - declare module.exports: (condition: boolean, message: string) => void; -} diff --git a/flow-typed/npm/jest-styled-components_vx.x.x.js b/flow-typed/npm/jest-styled-components_vx.x.x.js deleted file mode 100644 index 13231ec..0000000 --- a/flow-typed/npm/jest-styled-components_vx.x.x.js +++ /dev/null @@ -1,74 +0,0 @@ -// flow-typed signature: 2c9e2d1f0921ec053c378e873bc9f27c -// flow-typed version: <>/jest-styled-components_v^6.3.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'jest-styled-components' - * - * 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 'jest-styled-components' { - 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 'jest-styled-components/native/index' { - declare module.exports: any; -} - -declare module 'jest-styled-components/serializer/index' { - declare module.exports: any; -} - -declare module 'jest-styled-components/src/index' { - declare module.exports: any; -} - -declare module 'jest-styled-components/src/native/toHaveStyleRule' { - declare module.exports: any; -} - -declare module 'jest-styled-components/src/styleSheetSerializer' { - declare module.exports: any; -} - -declare module 'jest-styled-components/src/toHaveStyleRule' { - declare module.exports: any; -} - -declare module 'jest-styled-components/src/utils' { - declare module.exports: any; -} - -// Filename aliases -declare module 'jest-styled-components/native/index.js' { - declare module.exports: $Exports<'jest-styled-components/native/index'>; -} -declare module 'jest-styled-components/serializer/index.js' { - declare module.exports: $Exports<'jest-styled-components/serializer/index'>; -} -declare module 'jest-styled-components/src/index.js' { - declare module.exports: $Exports<'jest-styled-components/src/index'>; -} -declare module 'jest-styled-components/src/native/toHaveStyleRule.js' { - declare module.exports: $Exports<'jest-styled-components/src/native/toHaveStyleRule'>; -} -declare module 'jest-styled-components/src/styleSheetSerializer.js' { - declare module.exports: $Exports<'jest-styled-components/src/styleSheetSerializer'>; -} -declare module 'jest-styled-components/src/toHaveStyleRule.js' { - declare module.exports: $Exports<'jest-styled-components/src/toHaveStyleRule'>; -} -declare module 'jest-styled-components/src/utils.js' { - declare module.exports: $Exports<'jest-styled-components/src/utils'>; -} diff --git a/flow-typed/npm/jest_v24.x.x.js b/flow-typed/npm/jest_v24.x.x.js deleted file mode 100644 index 1c1d6d9..0000000 --- a/flow-typed/npm/jest_v24.x.x.js +++ /dev/null @@ -1,1186 +0,0 @@ -// flow-typed signature: 833075a5cefc49eb523160a5fca9d8b6 -// flow-typed version: 325925f1b7/jest_v24.x.x/flow_>=v0.39.x - -type JestMockFn, 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, - /** - * An array that contains all the object instances that have been - * instantiated from this mock function. - */ - instances: Array, - /** - * An array that contains all the object results that have been - * returned by this mock function call - */ - results: Array<{ isThrow: boolean, value: 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, - /** - * 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, - /** - * Accepts a string to use in test result output in place of "jest.fn()" to - * indicate which mock function is being referenced. - */ - mockName(name: string): JestMockFn, - /** - * Just a simple sugar function for returning `this` - */ - mockReturnThis(): void, - /** - * Accepts a value that will be returned whenever the mock function is called. - */ - mockReturnValue(value: TReturn): JestMockFn, - /** - * Sugar for only returning a value once inside your mock - */ - mockReturnValueOnce(value: TReturn): JestMockFn, - /** - * Sugar for jest.fn().mockImplementation(() => Promise.resolve(value)) - */ - mockResolvedValue(value: TReturn): JestMockFn>, - /** - * Sugar for jest.fn().mockImplementationOnce(() => Promise.resolve(value)) - */ - mockResolvedValueOnce( - value: TReturn - ): JestMockFn>, - /** - * Sugar for jest.fn().mockImplementation(() => Promise.reject(value)) - */ - mockRejectedValue(value: TReturn): JestMockFn>, - /** - * Sugar for jest.fn().mockImplementationOnce(() => Promise.reject(value)) - */ - mockRejectedValueOnce(value: TReturn): JestMockFn>, -}; - -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 | Promise; - -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, -}; - -/** - * Jest allows functions and classes to be used as test names in test() and - * describe() - */ -type JestTestName = string | Function; - -/** - * Plugin: jest-styled-components - */ - -type JestStyledComponentsMatcherValue = - | string - | JestAsymmetricEqualityType - | RegExp - | typeof undefined; - -type JestStyledComponentsMatcherOptions = { - media?: string, - modifier?: string, - supports?: string, -}; - -type JestStyledComponentsMatchersType = { - toHaveStyleRule( - property: string, - value: JestStyledComponentsMatcherValue, - options?: JestStyledComponentsMatcherOptions - ): void, -}; - -/** - * Plugin: jest-enzyme - */ -type EnzymeMatchersType = { - // 5.x - toBeEmpty(): void, - toBePresent(): void, - // 6.x - toBeChecked(): void, - toBeDisabled(): void, - toBeEmptyRender(): void, - toContainMatchingElement(selector: string): void, - toContainMatchingElements(n: number, selector: string): void, - toContainExactlyOneMatchingElement(selector: string): void, - toContainReact(element: React$Element): void, - toExist(): void, - toHaveClassName(className: string): void, - toHaveHTML(html: string): void, - toHaveProp: ((propKey: string, propValue?: any) => void) & - ((props: {}) => void), - toHaveRef(refName: string): void, - toHaveState: ((stateKey: string, stateValue?: any) => void) & - ((state: {}) => void), - toHaveStyle: ((styleKey: string, styleValue?: any) => void) & - ((style: {}) => void), - toHaveTagName(tagName: string): void, - toHaveText(text: string): void, - toHaveValue(value: any): void, - toIncludeText(text: string): void, - toMatchElement( - element: React$Element, - options?: {| ignoreProps?: boolean, verbose?: boolean |} - ): void, - toMatchSelector(selector: string): void, - // 7.x - toHaveDisplayName(name: string): void, -}; - -// DOM testing library extensions https://github.com/kentcdodds/dom-testing-library#custom-jest-matchers -type DomTestingLibraryType = { - toBeDisabled(): void, - toBeEmpty(): void, - toBeInTheDocument(): void, - toBeVisible(): void, - toContainElement(element: HTMLElement | null): void, - toContainHTML(htmlText: string): void, - toHaveAttribute(name: string, expectedValue?: string): void, - toHaveClass(...classNames: string[]): void, - toHaveFocus(): void, - toHaveFormValues(expectedValues: { [name: string]: any }): void, - toHaveStyle(css: string): void, - toHaveTextContent( - content: string | RegExp, - options?: { normalizeWhitespace: boolean } - ): void, - toBeInTheDOM(): void, -}; - -// Jest JQuery Matchers: https://github.com/unindented/custom-jquery-matchers -type JestJQueryMatchersType = { - toExist(): void, - toHaveLength(len: number): void, - toHaveId(id: string): void, - toHaveClass(className: string): void, - toHaveTag(tag: string): void, - toHaveAttr(key: string, val?: any): void, - toHaveProp(key: string, val?: any): void, - toHaveText(text: string | RegExp): void, - toHaveData(key: string, val?: any): void, - toHaveValue(val: any): void, - toHaveCss(css: { [key: string]: any }): void, - toBeChecked(): void, - toBeDisabled(): void, - toBeEmpty(): void, - toBeHidden(): void, - toBeSelected(): void, - toBeVisible(): void, - toBeFocused(): void, - toBeInDom(): void, - toBeMatchedBy(sel: string): void, - toHaveDescendant(sel: string): void, - toHaveDescendantWithText(sel: string, text: string | RegExp): void, -}; - -// Jest Extended Matchers: https://github.com/jest-community/jest-extended -type JestExtendedMatchersType = { - /** - * Note: Currently unimplemented - * Passing assertion - * - * @param {String} message - */ - // pass(message: string): void; - - /** - * Note: Currently unimplemented - * Failing assertion - * - * @param {String} message - */ - // fail(message: string): void; - - /** - * Use .toBeEmpty when checking if a String '', Array [] or Object {} is empty. - */ - toBeEmpty(): void, - - /** - * Use .toBeOneOf when checking if a value is a member of a given Array. - * @param {Array.<*>} members - */ - toBeOneOf(members: any[]): void, - - /** - * Use `.toBeNil` when checking a value is `null` or `undefined`. - */ - toBeNil(): void, - - /** - * Use `.toSatisfy` when you want to use a custom matcher by supplying a predicate function that returns a `Boolean`. - * @param {Function} predicate - */ - toSatisfy(predicate: (n: any) => boolean): void, - - /** - * Use `.toBeArray` when checking if a value is an `Array`. - */ - toBeArray(): void, - - /** - * Use `.toBeArrayOfSize` when checking if a value is an `Array` of size x. - * @param {Number} x - */ - toBeArrayOfSize(x: number): void, - - /** - * Use `.toIncludeAllMembers` when checking if an `Array` contains all of the same members of a given set. - * @param {Array.<*>} members - */ - toIncludeAllMembers(members: any[]): void, - - /** - * Use `.toIncludeAnyMembers` when checking if an `Array` contains any of the members of a given set. - * @param {Array.<*>} members - */ - toIncludeAnyMembers(members: any[]): void, - - /** - * Use `.toSatisfyAll` when you want to use a custom matcher by supplying a predicate function that returns a `Boolean` for all values in an array. - * @param {Function} predicate - */ - toSatisfyAll(predicate: (n: any) => boolean): void, - - /** - * Use `.toBeBoolean` when checking if a value is a `Boolean`. - */ - toBeBoolean(): void, - - /** - * Use `.toBeTrue` when checking a value is equal (===) to `true`. - */ - toBeTrue(): void, - - /** - * Use `.toBeFalse` when checking a value is equal (===) to `false`. - */ - toBeFalse(): void, - - /** - * Use .toBeDate when checking if a value is a Date. - */ - toBeDate(): void, - - /** - * Use `.toBeFunction` when checking if a value is a `Function`. - */ - toBeFunction(): void, - - /** - * Use `.toHaveBeenCalledBefore` when checking if a `Mock` was called before another `Mock`. - * - * Note: Required Jest version >22 - * Note: Your mock functions will have to be asynchronous to cause the timestamps inside of Jest to occur in a differentJS event loop, otherwise the mock timestamps will all be the same - * - * @param {Mock} mock - */ - toHaveBeenCalledBefore(mock: JestMockFn): void, - - /** - * Use `.toBeNumber` when checking if a value is a `Number`. - */ - toBeNumber(): void, - - /** - * Use `.toBeNaN` when checking a value is `NaN`. - */ - toBeNaN(): void, - - /** - * Use `.toBeFinite` when checking if a value is a `Number`, not `NaN` or `Infinity`. - */ - toBeFinite(): void, - - /** - * Use `.toBePositive` when checking if a value is a positive `Number`. - */ - toBePositive(): void, - - /** - * Use `.toBeNegative` when checking if a value is a negative `Number`. - */ - toBeNegative(): void, - - /** - * Use `.toBeEven` when checking if a value is an even `Number`. - */ - toBeEven(): void, - - /** - * Use `.toBeOdd` when checking if a value is an odd `Number`. - */ - toBeOdd(): void, - - /** - * Use `.toBeWithin` when checking if a number is in between the given bounds of: start (inclusive) and end (exclusive). - * - * @param {Number} start - * @param {Number} end - */ - toBeWithin(start: number, end: number): void, - - /** - * Use `.toBeObject` when checking if a value is an `Object`. - */ - toBeObject(): void, - - /** - * Use `.toContainKey` when checking if an object contains the provided key. - * - * @param {String} key - */ - toContainKey(key: string): void, - - /** - * Use `.toContainKeys` when checking if an object has all of the provided keys. - * - * @param {Array.} keys - */ - toContainKeys(keys: string[]): void, - - /** - * Use `.toContainAllKeys` when checking if an object only contains all of the provided keys. - * - * @param {Array.} keys - */ - toContainAllKeys(keys: string[]): void, - - /** - * Use `.toContainAnyKeys` when checking if an object contains at least one of the provided keys. - * - * @param {Array.} keys - */ - toContainAnyKeys(keys: string[]): void, - - /** - * Use `.toContainValue` when checking if an object contains the provided value. - * - * @param {*} value - */ - toContainValue(value: any): void, - - /** - * Use `.toContainValues` when checking if an object contains all of the provided values. - * - * @param {Array.<*>} values - */ - toContainValues(values: any[]): void, - - /** - * Use `.toContainAllValues` when checking if an object only contains all of the provided values. - * - * @param {Array.<*>} values - */ - toContainAllValues(values: any[]): void, - - /** - * Use `.toContainAnyValues` when checking if an object contains at least one of the provided values. - * - * @param {Array.<*>} values - */ - toContainAnyValues(values: any[]): void, - - /** - * Use `.toContainEntry` when checking if an object contains the provided entry. - * - * @param {Array.} entry - */ - toContainEntry(entry: [string, string]): void, - - /** - * Use `.toContainEntries` when checking if an object contains all of the provided entries. - * - * @param {Array.>} entries - */ - toContainEntries(entries: [string, string][]): void, - - /** - * Use `.toContainAllEntries` when checking if an object only contains all of the provided entries. - * - * @param {Array.>} entries - */ - toContainAllEntries(entries: [string, string][]): void, - - /** - * Use `.toContainAnyEntries` when checking if an object contains at least one of the provided entries. - * - * @param {Array.>} entries - */ - toContainAnyEntries(entries: [string, string][]): void, - - /** - * Use `.toBeExtensible` when checking if an object is extensible. - */ - toBeExtensible(): void, - - /** - * Use `.toBeFrozen` when checking if an object is frozen. - */ - toBeFrozen(): void, - - /** - * Use `.toBeSealed` when checking if an object is sealed. - */ - toBeSealed(): void, - - /** - * Use `.toBeString` when checking if a value is a `String`. - */ - toBeString(): void, - - /** - * Use `.toEqualCaseInsensitive` when checking if a string is equal (===) to another ignoring the casing of both strings. - * - * @param {String} string - */ - toEqualCaseInsensitive(string: string): void, - - /** - * Use `.toStartWith` when checking if a `String` starts with a given `String` prefix. - * - * @param {String} prefix - */ - toStartWith(prefix: string): void, - - /** - * Use `.toEndWith` when checking if a `String` ends with a given `String` suffix. - * - * @param {String} suffix - */ - toEndWith(suffix: string): void, - - /** - * Use `.toInclude` when checking if a `String` includes the given `String` substring. - * - * @param {String} substring - */ - toInclude(substring: string): void, - - /** - * Use `.toIncludeRepeated` when checking if a `String` includes the given `String` substring the correct number of times. - * - * @param {String} substring - * @param {Number} times - */ - toIncludeRepeated(substring: string, times: number): void, - - /** - * Use `.toIncludeMultiple` when checking if a `String` includes all of the given substrings. - * - * @param {Array.} substring - */ - toIncludeMultiple(substring: string[]): void, -}; - -interface JestExpectType { - not: JestExpectType & - EnzymeMatchersType & - DomTestingLibraryType & - JestJQueryMatchersType & - JestStyledComponentsMatchersType & - JestExtendedMatchersType; - /** - * If you have a mock function, you can use .lastCalledWith to test what - * arguments it was last called with. - */ - lastCalledWith(...args: Array): void; - /** - * toBe just checks that a value is what you expect. It uses === to check - * strict equality. - */ - toBe(value: any): void; - /** - * Use .toBeCalledWith to ensure that a mock function was called with - * specific arguments. - */ - toBeCalledWith(...args: Array): 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; - toBeCalled(): void; - /** - * Use .toHaveBeenCalledTimes to ensure that a mock function got called exact - * number of times. - */ - toHaveBeenCalledTimes(number: number): void; - toBeCalledTimes(number: number): void; - /** - * - */ - toHaveBeenNthCalledWith(nthCall: number, ...args: Array): void; - nthCalledWith(nthCall: number, ...args: Array): void; - /** - * - */ - toHaveReturned(): void; - toReturn(): void; - /** - * - */ - toHaveReturnedTimes(number: number): void; - toReturnTimes(number: number): void; - /** - * - */ - toHaveReturnedWith(value: any): void; - toReturnWith(value: any): void; - /** - * - */ - toHaveLastReturnedWith(value: any): void; - lastReturnedWith(value: any): void; - /** - * - */ - toHaveNthReturnedWith(nthCall: number, value: any): void; - nthReturnedWith(nthCall: number, value: any): void; - /** - * Use .toHaveBeenCalledWith to ensure that a mock function was called with - * specific arguments. - */ - toHaveBeenCalledWith(...args: Array): void; - toBeCalledWith(...args: Array): void; - /** - * Use .toHaveBeenLastCalledWith to ensure that a mock function was last called - * with specific arguments. - */ - toHaveBeenLastCalledWith(...args: Array): void; - lastCalledWith(...args: Array): 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): void; - /** - * Use .toStrictEqual to check that a javascript object matches a subset of the properties of an object. - */ - toStrictEqual(value: any): void; - /** - * This ensures that an Object matches the most recent snapshot. - */ - toMatchSnapshot(propertyMatchers?: any, name?: string): void; - /** - * This ensures that an Object matches the most recent snapshot. - */ - toMatchSnapshot(name: string): void; - - toMatchInlineSnapshot(snapshot?: string): void; - toMatchInlineSnapshot(propertyMatchers?: any, snapshot?: 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 | RegExp): void; - toThrowError(message?: string | Error | Class | RegExp): void; - /** - * Use .toThrowErrorMatchingSnapshot to test that a function throws a error - * matching the most recent snapshot when it is called. - */ - toThrowErrorMatchingSnapshot(): void; - toThrowErrorMatchingInlineSnapshot(snapshot?: string): 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, - /** - * Restores all mocks back to their original value. - */ - restoreAllMocks(): JestObjectType, - /** - * Removes any pending timers from the timer system. - */ - clearAllTimers(): void, - /** - * Returns the number of fake timers still left to run. - */ - getTimerCount(): number, - /** - * 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, TReturn>( - implementation?: (...args: TArguments) => TReturn - ): JestMockFn, - /** - * 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, - - /** - * Creates a sandbox registry for the modules that are loaded inside the - * callback function. This is useful to isolate specific modules for every - * test so that local module state doesn't conflict between tests. - */ - isolateModules(fn: () => void): 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()). - */ - advanceTimersByTime(msToRun: number): void, - /** - * Executes only the macro task queue (i.e. all tasks queued by setTimeout() - * or setInterval() and setImmediate()). - * - * Renamed to `advanceTimersByTime`. - */ - 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, - accessType?: 'get' | 'set' - ): JestMockFn, - /** - * 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, - timeout?: number -): void; -/** Runs this function before every test inside this context */ -declare function beforeEach( - fn: (done: () => void) => ?Promise, - timeout?: number -): void; -/** Runs this function after all tests have finished inside this context */ -declare function afterAll( - fn: (done: () => void) => ?Promise, - timeout?: number -): void; -/** Runs this function before any tests have started inside this context */ -declare function beforeAll( - fn: (done: () => void) => ?Promise, - 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: JestTestName, fn: () => void): void, - - /** - * Only run this describe block - */ - only(name: JestTestName, fn: () => void): void, - - /** - * Skip running this describe block - */ - skip(name: JestTestName, fn: () => void): void, - - /** - * each runs this test against array of argument arrays per each run - * - * @param {table} table of Test - */ - each( - ...table: Array | mixed> | [Array, string] - ): ( - name: JestTestName, - fn?: (...args: Array) => ?Promise, - timeout?: number - ) => void, -}; - -/** An individual test unit */ -declare var it: { - /** - * An individual test unit - * - * @param {JestTestName} Name of Test - * @param {Function} Test - * @param {number} Timeout for the test, in milliseconds. - */ - ( - name: JestTestName, - fn?: (done: () => void) => ?Promise, - timeout?: number - ): void, - - /** - * Only run this test - * - * @param {JestTestName} Name of Test - * @param {Function} Test - * @param {number} Timeout for the test, in milliseconds. - */ - only( - name: JestTestName, - fn?: (done: () => void) => ?Promise, - timeout?: number - ): { - each( - ...table: Array | mixed> | [Array, string] - ): ( - name: JestTestName, - fn?: (...args: Array) => ?Promise, - timeout?: number - ) => void, - }, - - /** - * Skip running this test - * - * @param {JestTestName} Name of Test - * @param {Function} Test - * @param {number} Timeout for the test, in milliseconds. - */ - skip( - name: JestTestName, - fn?: (done: () => void) => ?Promise, - timeout?: number - ): void, - - /** - * Highlight planned tests in the summary output - * - * @param {String} Name of Test to do - */ - todo(name: string): void, - - /** - * Run the test concurrently - * - * @param {JestTestName} Name of Test - * @param {Function} Test - * @param {number} Timeout for the test, in milliseconds. - */ - concurrent( - name: JestTestName, - fn?: (done: () => void) => ?Promise, - timeout?: number - ): void, - - /** - * each runs this test against array of argument arrays per each run - * - * @param {table} table of Test - */ - each( - ...table: Array | mixed> | [Array, string] - ): ( - name: JestTestName, - fn?: (...args: Array) => ?Promise, - timeout?: number - ) => void, -}; - -declare function fit( - name: JestTestName, - fn: (done: () => void) => ?Promise, - 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; - -type JestPrettyFormatColors = { - comment: { close: string, open: string }, - content: { close: string, open: string }, - prop: { close: string, open: string }, - tag: { close: string, open: string }, - value: { close: string, open: string }, -}; - -type JestPrettyFormatIndent = string => string; -type JestPrettyFormatRefs = Array; -type JestPrettyFormatPrint = any => string; -type JestPrettyFormatStringOrNull = string | null; - -type JestPrettyFormatOptions = {| - callToJSON: boolean, - edgeSpacing: string, - escapeRegex: boolean, - highlight: boolean, - indent: number, - maxDepth: number, - min: boolean, - plugins: JestPrettyFormatPlugins, - printFunctionName: boolean, - spacing: string, - theme: {| - comment: string, - content: string, - prop: string, - tag: string, - value: string, - |}, -|}; - -type JestPrettyFormatPlugin = { - print: ( - val: any, - serialize: JestPrettyFormatPrint, - indent: JestPrettyFormatIndent, - opts: JestPrettyFormatOptions, - colors: JestPrettyFormatColors - ) => string, - test: any => boolean, -}; - -type JestPrettyFormatPlugins = Array; - -/** 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 & - DomTestingLibraryType & - JestJQueryMatchersType & - JestStyledComponentsMatchersType & - JestExtendedMatchersType, - - /** Add additional Jasmine matchers to Jest's roster */ - extend(matchers: { [name: string]: JestMatcher }): void, - /** Add a module that formats application-specific data structures. */ - addSnapshotSerializer(pluginModule: JestPrettyFormatPlugin): void, - assertions(expectedAssertions: number): void, - hasAssertions(): void, - any(value: mixed): JestAsymmetricEqualityType, - anything(): any, - arrayContaining(value: Array): Array, - objectContaining(value: Object): Object, - /** Matches any received string that contains the exact expected string. */ - stringContaining(value: string): string, - stringMatching(value: string | RegExp): string, - not: { - arrayContaining: (value: $ReadOnlyArray) => Array, - objectContaining: (value: {}) => Object, - stringContaining: (value: string) => string, - stringMatching: (value: string | RegExp) => string, - }, -}; - -// 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(): any, - arrayContaining(value: Array): Array, - clock(): JestClockType, - createSpy(name: string): JestSpyType, - createSpyObj( - baseName: string, - methodNames: Array - ): { [methodName: string]: JestSpyType }, - objectContaining(value: Object): Object, - stringMatching(value: string): string, -}; diff --git a/flow-typed/npm/keygrip_vx.x.x.js b/flow-typed/npm/keygrip_vx.x.x.js deleted file mode 100644 index 6e9208b..0000000 --- a/flow-typed/npm/keygrip_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 238a686d4f6643cbcb06749cdc91081f -// flow-typed version: <>/keygrip_v^1.0.3/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'keygrip' - * - * 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 'keygrip' { - 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 'keygrip/index' { - declare module.exports: $Exports<'keygrip'>; -} -declare module 'keygrip/index.js' { - declare module.exports: $Exports<'keygrip'>; -} diff --git a/flow-typed/npm/koa-better-router_vx.x.x.js b/flow-typed/npm/koa-better-router_vx.x.x.js deleted file mode 100644 index 1d315c7..0000000 --- a/flow-typed/npm/koa-better-router_vx.x.x.js +++ /dev/null @@ -1,38 +0,0 @@ -// flow-typed signature: 280b0a9bc1df1d2b791509beb8ae723c -// flow-typed version: <>/koa-better-router_v^2.1.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'koa-better-router' - * - * 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 'koa-better-router' { - 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 'koa-better-router/utils' { - declare module.exports: any; -} - -// Filename aliases -declare module 'koa-better-router/index' { - declare module.exports: $Exports<'koa-better-router'>; -} -declare module 'koa-better-router/index.js' { - declare module.exports: $Exports<'koa-better-router'>; -} -declare module 'koa-better-router/utils.js' { - declare module.exports: $Exports<'koa-better-router/utils'>; -} diff --git a/flow-typed/npm/koa-bodyparser_v4.x.x.js b/flow-typed/npm/koa-bodyparser_v4.x.x.js deleted file mode 100644 index 2e4a14b..0000000 --- a/flow-typed/npm/koa-bodyparser_v4.x.x.js +++ /dev/null @@ -1,28 +0,0 @@ -// flow-typed signature: db2ab32952e719c6656cef681be04c96 -// flow-typed version: e969a7af52/koa-bodyparser_v4.x.x/flow_>=v0.56.x - -declare module 'koa-bodyparser' { - declare type Context = Object; - - declare type Middleware = ( - ctx: Context, - next: () => Promise - ) => Promise | void; - - declare type Options = {| - enableTypes?: Array, - encode?: string, - formLimit?: string, - jsonLimit?: string, - strict?: boolean, - detectJSON?: (ctx: Context) => boolean, - extendTypes?: { - json?: Array, - form?: Array, - text?: Array - }, - onerror?: (err: Error, ctx: Context) => void - |}; - - declare module.exports: (opts?: Options) => Middleware; -} diff --git a/flow-typed/npm/koa-session_vx.x.x.js b/flow-typed/npm/koa-session_vx.x.x.js deleted file mode 100644 index 1172aa2..0000000 --- a/flow-typed/npm/koa-session_vx.x.x.js +++ /dev/null @@ -1,52 +0,0 @@ -// flow-typed signature: 749cfcd8abd66a98e3ea559173f58ec7 -// flow-typed version: <>/koa-session_v^5.10.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'koa-session' - * - * 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 'koa-session' { - 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 'koa-session/lib/context' { - declare module.exports: any; -} - -declare module 'koa-session/lib/session' { - declare module.exports: any; -} - -declare module 'koa-session/lib/util' { - declare module.exports: any; -} - -// Filename aliases -declare module 'koa-session/index' { - declare module.exports: $Exports<'koa-session'>; -} -declare module 'koa-session/index.js' { - declare module.exports: $Exports<'koa-session'>; -} -declare module 'koa-session/lib/context.js' { - declare module.exports: $Exports<'koa-session/lib/context'>; -} -declare module 'koa-session/lib/session.js' { - declare module.exports: $Exports<'koa-session/lib/session'>; -} -declare module 'koa-session/lib/util.js' { - declare module.exports: $Exports<'koa-session/lib/util'>; -} diff --git a/flow-typed/npm/koa_v2.0.x.js b/flow-typed/npm/koa_v2.0.x.js deleted file mode 100644 index 69542b5..0000000 --- a/flow-typed/npm/koa_v2.0.x.js +++ /dev/null @@ -1,304 +0,0 @@ -// flow-typed signature: 6d4f3af739940c5f8cec03ee95584b66 -// flow-typed version: d512dfb5d1/koa_v2.0.x/flow_>=v0.94.x - -/* - * Type def from from source code of koa. - * this: https://github.com/koajs/koa/commit/fabf5864c6a5dca0782b867a263b1b0825a05bf9 -**/ -declare module 'koa' { - declare type JSON = | string | number | boolean | null | JSONObject | JSONArray; - declare type JSONObject = { [key: string]: JSON }; - declare type JSONArray = Array; - - declare type SimpleHeader = { - 'set-cookie'?: Array, - [key: string]: string, - }; - - declare type RequestJSON = { - 'method': string, - 'url': string, - 'header': SimpleHeader, - }; - declare type RequestInspect = void|RequestJSON; - declare type Request = { - app: Application, - req: http$IncomingMessage<>, - res: http$ServerResponse, - ctx: Context, - response: Response, - - fresh: boolean, - header: SimpleHeader, - headers: SimpleHeader, // alias as header - host: string, - hostname: string, - href: string, - idempotent: boolean, - ip: string, - ips: string[], - method: string, - origin: string, - originalUrl: string, - path: string, - protocol: string, - query: {[key: string]: string}, // always string - querystring: string, - search: string, - secure: boolean, // Shorthand for ctx.protocol == "https" to check if a request was issued via TLS. - socket: net$Socket, - stale: boolean, - subdomains: string[], - type: string, - url: string, - - charset: string|void, - length: number|void, - -// Those functions comes from https://github.com/jshttp/accepts/blob/master/index.js -// request.js$L445 -// https://github.com/jshttp/accepts/blob/master/test/type.js - accepts: ((args: string[]) => string|false)& - // ToDo: There is an issue https://github.com/facebook/flow/issues/3009 - // if you meet some error here, temporarily add an additional annotation - // like: `request.accepts((['json', 'text']:Array))` to fix it. - ((arg: string, ...args: string[]) => string|false) & - (() => string[]), // return the old value. - -// https://github.com/jshttp/accepts/blob/master/index.js#L153 -// https://github.com/jshttp/accepts/blob/master/test/charset.js - acceptsCharsets: ((args: string[]) => buffer$Encoding|false)& - // ToDo: https://github.com/facebook/flow/issues/3009 - // if you meet some error here, see L70. - ((arg: string, ...args: string[]) => buffer$Encoding|false) & - (() => string[]), - -// https://github.com/jshttp/accepts/blob/master/index.js#L119 -// https://github.com/jshttp/accepts/blob/master/test/encoding.js - acceptsEncodings: ((args: string[]) => string|false)& - // ToDo: https://github.com/facebook/flow/issues/3009 - // if you meet some error here, see L70. - ((arg: string, ...args: string[]) => string|false) & - (() => string[]), - -// https://github.com/jshttp/accepts/blob/master/index.js#L185 -// https://github.com/jshttp/accepts/blob/master/test/language.js - acceptsLanguages: ((args: string[]) => string|false) & - // ToDo: https://github.com/facebook/flow/issues/3009 - // if you meet some error here, see L70. - ((arg: string, ...args: string[]) => string|false) & - (() => string[]), - - get: (field: string) => string, - -/* https://github.com/jshttp/type-is/blob/master/test/test.js -* Check if the incoming request contains the "Content-Type" -* header field, and it contains any of the give mime `type`s. -* If there is no request body, `null` is returned. -* If there is no content type, `false` is returned. -* Otherwise, it returns the first `type` that matches. -*/ - is: ((args: string[]) => null|false|string)& - ((arg: string, ...args: string[]) => null|false|string) & - (() => string), // should return the mime type - - toJSON: () => RequestJSON, - inspect: () => RequestInspect, - - [key: string]: mixed, // props added by middlewares. - }; - - declare type ResponseJSON = { - 'status': mixed, - 'message': mixed, - 'header': mixed, - }; - declare type ResponseInspect = { - 'status': mixed, - 'message': mixed, - 'header': mixed, - 'body': mixed, - }; - declare type Response = { - app: Application, - req: http$IncomingMessage<>, - res: http$ServerResponse, - ctx: Context, - request: Request, - - // docs/api/response.md#L113. - body: string | Buffer | stream$Stream | JSONObject | null, // JSON contains null - etag: string, - header: SimpleHeader, - headers: SimpleHeader, // alias as header - headerSent: boolean, - // can be set with string|Date, but get with Date. - // set lastModified(v: string|Date), // 0.36 doesn't support this. - lastModified: Date, - message: string, - socket: net$Socket, - status: number, - type: string, - writable: boolean, - - // charset: string, // doesn't find in response.js - length: number|void, - - append: (field: string, val: string | string[]) => void, - attachment: (filename?: string) => void, - get: (field: string) => string, - // https://github.com/jshttp/type-is/blob/master/test/test.js - // https://github.com/koajs/koa/blob/v2.x/lib/response.js#L382 - is: ((arg: string[]) => false|string) & - ((arg: string, ...args: string[]) => false|string) & - (() => string), // should return the mime type - redirect: (url: string, alt?: string) => void, - remove: (field: string) => void, - // https://github.com/koajs/koa/blob/v2.x/lib/response.js#L418 - set: ((field: string, val: string | string[]) => void)& - ((field: {[key: string]: string | string[]}) => void), - - vary: (field: string) => void, - - // https://github.com/koajs/koa/blob/v2.x/lib/response.js#L519 - toJSON(): ResponseJSON, - inspect(): ResponseInspect, - - [key: string]: mixed, // props added by middlewares. - } - - declare type ContextJSON = { - request: RequestJSON, - response: ResponseJSON, - app: ApplicationJSON, - originalUrl: string, - req: '', - res: '', - socket: '', - }; - // https://github.com/pillarjs/cookies - declare type CookiesSetOptions = { - domain: string, // domain of the cookie (no default). - maxAge: number, // milliseconds from Date.now() for expiry - expires?: Date, // cookie's expiration date (expires at the end of session by default). - path?: string, // the path of the cookie (/ by default). - secure?: boolean, // false by default for HTTP, true by default for HTTPS - httpOnly?: boolean, // a boolean indicating whether the cookie is only to be sent over HTTP(S), - // and not made available to client JavaScript (true by default). - signed?: boolean, // whether the cookie is to be signed (false by default) - overwrite?: boolean, // whether to overwrite previously set cookies of the same name (false by default). - }; - declare type Cookies = { - get: (name: string, options?: {signed: boolean}) => string|void, - set: ((name: string, value: string, options?: CookiesSetOptions) => Context)& - // delete cookie (an outbound header with an expired date is used.) - ((name: string) => Context), - }; - // The default props of context come from two files - // `application.createContext` & `context.js` - declare type Context = { - accept: $PropertyType, - app: Application, - cookies: Cookies, - name?: string, // ? - originalUrl: string, - req: http$IncomingMessage<>, - request: Request, - res: http$ServerResponse, - respond?: boolean, // should not be used, allow bypassing koa application.js#L193 - response: Response, - state: {}, - - // context.js#L55 - assert: (test: mixed, status: number, message?: string, opts?: mixed) => void, - // context.js#L107 - // if (!(err instanceof Error)) err = new Error(`non-error thrown: ${err}`); - onerror: (err?: mixed) => void, - // context.js#L70 - throw: ((statusOrErr: string|number|Error, errOrStatus?: string|number|Error, - opts?: {}) => void) & - ((statusOrErr: string|number|Error, opts?: Object) => void), - toJSON(): ContextJSON, - inspect(): ContextJSON, - - // ToDo: add const for some props, - // while the `const props` feature of Flow is landing in future - // cherry pick from response - attachment: $PropertyType, - redirect: $PropertyType, - remove: $PropertyType, - vary: $PropertyType, - set: $PropertyType, - append: $PropertyType, - flushHeaders: $PropertyType, - status: $PropertyType, - message: $PropertyType, - body: $PropertyType, - length: $PropertyType, - type: $PropertyType, - lastModified: $PropertyType, - etag: $PropertyType, - headerSent: $PropertyType, - writable: $PropertyType, - - // cherry pick from request - acceptsLanguages: $PropertyType, - acceptsEncodings: $PropertyType, - acceptsCharsets: $PropertyType, - accepts: $PropertyType, - get: $PropertyType, - is: $PropertyType, - querystring: $PropertyType, - idempotent: $PropertyType, - socket: $PropertyType, - search: $PropertyType, - method: $PropertyType, - query: $PropertyType, - path: $PropertyType, - url: $PropertyType, - origin: $PropertyType, - href: $PropertyType, - subdomains: $PropertyType, - protocol: $PropertyType, - host: $PropertyType, - hostname: $PropertyType, - header: $PropertyType, - headers: $PropertyType, - secure: $PropertyType, - stale: $PropertyType, - fresh: $PropertyType, - ips: $PropertyType, - ip: $PropertyType, - - [key: string]: mixed, // props added by middlewares. - } - - declare type Middleware = - (ctx: Context, next: () => Promise) => Promise|void; - declare type ApplicationJSON = { - 'subdomainOffset': mixed, - 'proxy': mixed, - 'env': string, - }; - declare class Application extends events$EventEmitter { - context: Context, - // request handler for node's native http server. - callback: () => (req: http$IncomingMessage<>, res: http$ServerResponse) => void, - env: string, - keys?: Array|Object, // https://github.com/crypto-utils/keygrip - middleware: Array, - name?: string, // optionally give your application a name - proxy: boolean, // when true proxy header fields will be trusted - request: Request, - response: Response, - server: http$Server, - subdomainOffset: number, - - listen: $PropertyType, - toJSON(): ApplicationJSON, - inspect(): ApplicationJSON, - use(fn: Middleware): this, - } - - declare module.exports: Class; -} diff --git a/flow-typed/npm/koa_v2.x.x.js b/flow-typed/npm/koa_v2.x.x.js deleted file mode 100644 index 216c4a7..0000000 --- a/flow-typed/npm/koa_v2.x.x.js +++ /dev/null @@ -1,319 +0,0 @@ -// flow-typed signature: 32108e9dd6c40b60d7f9e87368b6f966 -// flow-typed version: 5a6a98aaa2/koa_v2.x.x/flow_>=v0.93.x - -/* - * Type def from from source code of koa. - * this: https://github.com/koajs/koa/commit/08eb1a20c3975230aa1fe1c693b0cd1ac7a0752b - * previous: https://github.com/koajs/koa/commit/fabf5864c6a5dca0782b867a263b1b0825a05bf9 - * - * Changelog - * breaking: remove unused app.name - * breaking: ctx.throw([status], [msg], [properties]) (caused by http-errors (#957) ) -**/ -declare module 'koa' { - // Currently, import type doesn't work well ? - // so copy `Server` from flow/lib/node.js#L820 - declare class Server extends net$Server { - listen(port?: number, hostname?: string, backlog?: number, callback?: Function): Server, - listen(path: string, callback?: Function): Server, - listen(handle: {}, callback?: Function): Server, - close(callback?: Function): Server, - maxHeadersCount: number, - setTimeout(msecs: number, callback: Function): Server, - timeout: number, - } - declare type ServerType = Server; - - declare type JSON = | string | number | boolean | null | JSONObject | JSONArray; - declare type JSONObject = { [key: string]: JSON }; - declare type JSONArray = Array; - - declare type SimpleHeader = { - 'set-cookie'?: Array, - [key: string]: string, - }; - - declare type RequestJSON = { - 'method': string, - 'url': string, - 'header': SimpleHeader, - }; - declare type RequestInspect = void|RequestJSON; - declare type Request = { - app: Application, - req: http$IncomingMessage<>, - res: http$ServerResponse, - ctx: Context, - response: Response, - - fresh: boolean, - header: SimpleHeader, - headers: SimpleHeader, // alias as header - host: string, - hostname: string, - href: string, - idempotent: boolean, - ip: string, - ips: string[], - method: string, - origin: string, - originalUrl: string, - path: string, - protocol: string, - query: {[key: string]: string}, // always string - querystring: string, - search: string, - secure: boolean, // Shorthand for ctx.protocol == "https" to check if a request was issued via TLS. - socket: net$Socket, - stale: boolean, - subdomains: string[], - type: string, - url: string, - - charset: string|void, - length: number|void, - -// Those functions comes from https://github.com/jshttp/accepts/blob/master/index.js -// request.js$L445 -// https://github.com/jshttp/accepts/blob/master/test/type.js - accepts: ((args: string[]) => string|false)& - // ToDo: There is an issue https://github.com/facebook/flow/issues/3009 - // if you meet some error here, temporarily add an additional annotation - // like: `request.accepts((['json', 'text']:Array))` to fix it. - ((arg: string, ...args: string[]) => string|false) & - (() => string[]), // return the old value. - -// https://github.com/jshttp/accepts/blob/master/index.js#L153 -// https://github.com/jshttp/accepts/blob/master/test/charset.js - acceptsCharsets: ((args: string[]) => buffer$Encoding|false)& - // ToDo: https://github.com/facebook/flow/issues/3009 - // if you meet some error here, see L70. - ((arg: string, ...args: string[]) => buffer$Encoding|false) & - (() => string[]), - -// https://github.com/jshttp/accepts/blob/master/index.js#L119 -// https://github.com/jshttp/accepts/blob/master/test/encoding.js - acceptsEncodings: ((args: string[]) => string|false)& - // ToDo: https://github.com/facebook/flow/issues/3009 - // if you meet some error here, see L70. - ((arg: string, ...args: string[]) => string|false) & - (() => string[]), - -// https://github.com/jshttp/accepts/blob/master/index.js#L185 -// https://github.com/jshttp/accepts/blob/master/test/language.js - acceptsLanguages: ((args: string[]) => string|false) & - // ToDo: https://github.com/facebook/flow/issues/3009 - // if you meet some error here, see L70. - ((arg: string, ...args: string[]) => string|false) & - (() => string[]), - - get: (field: string) => string, - -/* https://github.com/jshttp/type-is/blob/master/test/test.js -* Check if the incoming request contains the "Content-Type" -* header field, and it contains any of the give mime `type`s. -* If there is no request body, `null` is returned. -* If there is no content type, `false` is returned. -* Otherwise, it returns the first `type` that matches. -*/ - is: ((args: string[]) => null|false|string)& - ((arg: string, ...args: string[]) => null|false|string) & - (() => string), // should return the mime type - - toJSON: () => RequestJSON, - inspect: () => RequestInspect, - - [key: string]: mixed, // props added by middlewares. - }; - - declare type ResponseJSON = { - 'status': mixed, - 'message': mixed, - 'header': mixed, - }; - declare type ResponseInspect = { - 'status': mixed, - 'message': mixed, - 'header': mixed, - 'body': mixed, - }; - declare type Response = { - app: Application, - req: http$IncomingMessage<>, - res: http$ServerResponse, - ctx: Context, - request: Request, - - // docs/api/response.md#L113. - body: string | Buffer | stream$Stream | JSONObject | JSONArray | null, // JSON contains null - etag: string, - header: SimpleHeader, - headers: SimpleHeader, // alias as header - headerSent: boolean, - // can be set with string|Date, but get with Date. - // set lastModified(v: string|Date), // 0.36 doesn't support this. - lastModified: Date, - message: string, - socket: net$Socket, - status: number, - type: string, - writable: boolean, - - // charset: string, // doesn't find in response.js - length: number|void, - - append: (field: string, val: string | string[]) => void, - attachment: (filename?: string) => void, - get: (field: string) => string, - // https://github.com/jshttp/type-is/blob/master/test/test.js - // https://github.com/koajs/koa/blob/v2.x/lib/response.js#L382 - is: ((arg: string[]) => false|string) & - ((arg: string, ...args: string[]) => false|string) & - (() => string), // should return the mime type - redirect: (url: string, alt?: string) => void, - remove: (field: string) => void, - // https://github.com/koajs/koa/blob/v2.x/lib/response.js#L418 - set: ((field: string, val: string | string[]) => void)& - ((field: {[key: string]: string | string[]}) => void), - - vary: (field: string) => void, - - // https://github.com/koajs/koa/blob/v2.x/lib/response.js#L519 - toJSON(): ResponseJSON, - inspect(): ResponseInspect, - - [key: string]: mixed, // props added by middlewares. - } - - declare type ContextJSON = { - request: RequestJSON, - response: ResponseJSON, - app: ApplicationJSON, - originalUrl: string, - req: '', - res: '', - socket: '', - }; - // https://github.com/pillarjs/cookies - declare type CookiesSetOptions = { - domain: string, // domain of the cookie (no default). - maxAge: number, // milliseconds from Date.now() for expiry - expires?: Date, // cookie's expiration date (expires at the end of session by default). - path?: string, // the path of the cookie (/ by default). - secure?: boolean, // false by default for HTTP, true by default for HTTPS - httpOnly?: boolean, // a boolean indicating whether the cookie is only to be sent over HTTP(S), - // and not made available to client JavaScript (true by default). - signed?: boolean, // whether the cookie is to be signed (false by default) - overwrite?: boolean, // whether to overwrite previously set cookies of the same name (false by default). - }; - declare type Cookies = { - get: (name: string, options?: {signed: boolean}) => string|void, - set: ((name: string, value: string, options?: CookiesSetOptions) => Context)& - // delete cookie (an outbound header with an expired date is used.) - ((name: string) => Context), - }; - // The default props of context come from two files - // `application.createContext` & `context.js` - declare type Context = { - accept: $PropertyType, - app: Application, - cookies: Cookies, - name?: string, // ? - originalUrl: string, - req: http$IncomingMessage<>, - request: Request, - res: http$ServerResponse, - respond?: boolean, // should not be used, allow bypassing koa application.js#L193 - response: Response, - state: {}, - - // context.js#L55 - assert: (test: mixed, status: number, message?: string, opts?: mixed) => void, - // context.js#L107 - // if (!(err instanceof Error)) err = new Error(`non-error thrown: ${err}`); - onerror: (err?: mixed) => void, - // context.md#L88 - throw: (status: number, msg?: string, opts?: {}) => void, - toJSON(): ContextJSON, - inspect(): ContextJSON, - - // ToDo: add const for some props, - // while the `const props` feature of Flow is landing in future - // cherry pick from response - attachment: $PropertyType, - redirect: $PropertyType, - remove: $PropertyType, - vary: $PropertyType, - set: $PropertyType, - append: $PropertyType, - flushHeaders: $PropertyType, - status: $PropertyType, - message: $PropertyType, - body: $PropertyType, - length: $PropertyType, - type: $PropertyType, - lastModified: $PropertyType, - etag: $PropertyType, - headerSent: $PropertyType, - writable: $PropertyType, - - // cherry pick from request - acceptsLanguages: $PropertyType, - acceptsEncodings: $PropertyType, - acceptsCharsets: $PropertyType, - accepts: $PropertyType, - get: $PropertyType, - is: $PropertyType, - querystring: $PropertyType, - idempotent: $PropertyType, - socket: $PropertyType, - search: $PropertyType, - method: $PropertyType, - query: $PropertyType, - path: $PropertyType, - url: $PropertyType, - origin: $PropertyType, - href: $PropertyType, - subdomains: $PropertyType, - protocol: $PropertyType, - host: $PropertyType, - hostname: $PropertyType, - header: $PropertyType, - headers: $PropertyType, - secure: $PropertyType, - stale: $PropertyType, - fresh: $PropertyType, - ips: $PropertyType, - ip: $PropertyType, - - [key: string]: any, // props added by middlewares. - } - - declare type Middleware = - (ctx: Context, next: () => Promise) => Promise|void; - declare type ApplicationJSON = { - 'subdomainOffset': mixed, - 'proxy': mixed, - 'env': string, - }; - declare class Application extends events$EventEmitter { - context: Context, - // request handler for node's native http server. - callback: () => (req: http$IncomingMessage<>, res: http$ServerResponse) => void, - env: string, - keys?: Array|Object, // https://github.com/crypto-utils/keygrip - middleware: Array, - proxy: boolean, // when true proxy header fields will be trusted - request: Request, - response: Response, - server: Server, - subdomainOffset: number, - - listen: $PropertyType, - toJSON(): ApplicationJSON, - inspect(): ApplicationJSON, - use(fn: Middleware): this, - } - - declare module.exports: Class; -} diff --git a/flow-typed/npm/kompression_vx.x.x.js b/flow-typed/npm/kompression_vx.x.x.js deleted file mode 100644 index 1d97cf8..0000000 --- a/flow-typed/npm/kompression_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 3a2d1ff04b4afb17dfd267fdc0b5b8fa -// flow-typed version: <>/kompression_v^1.0.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'kompression' - * - * 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 'kompression' { - 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 'kompression/src/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'kompression/src/index.js' { - declare module.exports: $Exports<'kompression/src/index'>; -} diff --git a/flow-typed/npm/ksuid_vx.x.x.js b/flow-typed/npm/ksuid_vx.x.x.js deleted file mode 100644 index 209aa7b..0000000 --- a/flow-typed/npm/ksuid_vx.x.x.js +++ /dev/null @@ -1,38 +0,0 @@ -// flow-typed signature: 9c4895c10427bdd08f133aef585b83f4 -// flow-typed version: <>/ksuid_v^1.2.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'ksuid' - * - * 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 'ksuid' { - 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 'ksuid/base62' { - declare module.exports: any; -} - -// Filename aliases -declare module 'ksuid/base62.js' { - declare module.exports: $Exports<'ksuid/base62'>; -} -declare module 'ksuid/index' { - declare module.exports: $Exports<'ksuid'>; -} -declare module 'ksuid/index.js' { - declare module.exports: $Exports<'ksuid'>; -} diff --git a/flow-typed/npm/lerna_vx.x.x.js b/flow-typed/npm/lerna_vx.x.x.js deleted file mode 100644 index b4cf527..0000000 --- a/flow-typed/npm/lerna_vx.x.x.js +++ /dev/null @@ -1,38 +0,0 @@ -// flow-typed signature: 0a018fbd656d71c850dea629bbf50432 -// flow-typed version: <>/lerna_v^3.13.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'lerna' - * - * 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 'lerna' { - 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 'lerna/cli' { - declare module.exports: any; -} - -// Filename aliases -declare module 'lerna/cli.js' { - declare module.exports: $Exports<'lerna/cli'>; -} -declare module 'lerna/index' { - declare module.exports: $Exports<'lerna'>; -} -declare module 'lerna/index.js' { - declare module.exports: $Exports<'lerna'>; -} diff --git a/flow-typed/npm/lru-cache_vx.x.x.js b/flow-typed/npm/lru-cache_vx.x.x.js deleted file mode 100644 index 992e372..0000000 --- a/flow-typed/npm/lru-cache_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: aa3a1b0dfcedde8b8abcd0a7c7bb4270 -// flow-typed version: <>/lru-cache_v^5.1.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'lru-cache' - * - * 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 'lru-cache' { - 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 'lru-cache/index' { - declare module.exports: $Exports<'lru-cache'>; -} -declare module 'lru-cache/index.js' { - declare module.exports: $Exports<'lru-cache'>; -} diff --git a/flow-typed/npm/moment_v2.x.x.js b/flow-typed/npm/moment_v2.x.x.js deleted file mode 100644 index 7d52014..0000000 --- a/flow-typed/npm/moment_v2.x.x.js +++ /dev/null @@ -1,378 +0,0 @@ -// flow-typed signature: abe80b5d57d40f13b34f7a7414f1c541 -// flow-typed version: c23239b2a8/moment_v2.x.x/flow_>=v0.25.x - -type moment$MomentOptions = { - y?: number | string, - year?: number | string, - years?: number | string, - M?: number | string, - month?: number | string, - months?: number | string, - d?: number | string, - day?: number | string, - days?: number | string, - date?: number | string, - h?: number | string, - hour?: number | string, - hours?: number | string, - m?: number | string, - minute?: number | string, - minutes?: number | string, - s?: number | string, - second?: number | string, - seconds?: number | string, - ms?: number | string, - millisecond?: number | string, - milliseconds?: number | string -}; - -type moment$MomentObject = { - years: number, - months: number, - date: number, - hours: number, - minutes: number, - seconds: number, - milliseconds: number -}; - -type moment$MomentCreationData = { - input: string, - format: string, - locale: Object, - isUTC: boolean, - strict: boolean -}; - -type moment$CalendarFormat = string | ((moment: moment$Moment) => string); - -type moment$CalendarFormats = { - sameDay?: moment$CalendarFormat, - nextDay?: moment$CalendarFormat, - nextWeek?: moment$CalendarFormat, - lastDay?: moment$CalendarFormat, - lastWeek?: moment$CalendarFormat, - sameElse?: moment$CalendarFormat -}; - -type moment$Inclusivity = "()" | "[)" | "()" | "(]" | "[]"; - -declare class moment$LocaleData { - months(moment: moment$Moment): string; - monthsShort(moment: moment$Moment): string; - monthsParse(month: string): number; - weekdays(moment: moment$Moment): string; - weekdaysShort(moment: moment$Moment): string; - weekdaysMin(moment: moment$Moment): string; - weekdaysParse(weekDay: string): number; - longDateFormat(dateFormat: string): string; - isPM(date: string): boolean; - meridiem(hours: number, minutes: number, isLower: boolean): string; - calendar( - key: - | "sameDay" - | "nextDay" - | "lastDay" - | "nextWeek" - | "prevWeek" - | "sameElse", - moment: moment$Moment - ): string; - relativeTime( - number: number, - withoutSuffix: boolean, - key: "s" | "m" | "mm" | "h" | "hh" | "d" | "dd" | "M" | "MM" | "y" | "yy", - isFuture: boolean - ): string; - pastFuture(diff: any, relTime: string): string; - ordinal(number: number): string; - preparse(str: string): any; - postformat(str: string): any; - week(moment: moment$Moment): string; - invalidDate(): string; - firstDayOfWeek(): number; - firstDayOfYear(): number; -} -declare class moment$MomentDuration { - humanize(suffix?: boolean): string; - milliseconds(): number; - asMilliseconds(): number; - seconds(): number; - asSeconds(): number; - minutes(): number; - asMinutes(): number; - hours(): number; - asHours(): number; - days(): number; - asDays(): number; - months(): number; - asWeeks(): number; - weeks(): number; - asMonths(): number; - years(): number; - asYears(): number; - add(value: number | moment$MomentDuration | Object, unit?: string): this; - subtract(value: number | moment$MomentDuration | Object, unit?: string): this; - as(unit: string): number; - get(unit: string): number; - toJSON(): string; - toISOString(): string; - isValid(): boolean; -} -declare class moment$Moment { - static ISO_8601: string; - static (string?: ?string): moment$Moment; - static ( - initDate: - | moment$MomentOptions - | number - | Date - | Array - | moment$Moment - | string - | null - | void - | [] - | {} - ): moment$Moment; - static (array: []): moment$Moment; - static (object: {}): moment$Moment; - static (string: ?string, format: string | Array): moment$Moment; - static ( - string: ?string, - format: string | Array, - strict: boolean - ): moment$Moment; - static ( - string: ?string, - format: string | Array, - locale: string - ): moment$Moment; - static ( - string: ?string, - format: string | Array, - locale: string, - strict: boolean - ): moment$Moment; - static unix(seconds: number): moment$Moment; - static utc(): moment$Moment; - static utc( - initDate: - | moment$MomentOptions - | number - | Date - | Array - | moment$Moment - | string - | null - | void - ): moment$Moment; - static utc(string: string, format: string | Array): moment$Moment; - static utc( - string: string, - format: string | Array, - strict: boolean - ): moment$Moment; - static utc( - string: string, - format: string | Array, - locale: string - ): moment$Moment; - static utc( - string: string, - format: string | Array, - locale: string, - strict: boolean - ): moment$Moment; - static parseZone(): moment$Moment; - static parseZone(rawDate: string | null | void): moment$Moment; - static parseZone( - rawDate: string, - format: string | Array - ): moment$Moment; - static parseZone( - rawDate: string, - format: string | Array, - strict: boolean - ): moment$Moment; - static parseZone( - rawDate: string, - format: string | Array, - locale: string - ): moment$Moment; - static parseZone( - rawDate: string, - format: string | Array, - locale: string, - strict: boolean - ): moment$Moment; - isValid(): boolean; - invalidAt(): 0 | 1 | 2 | 3 | 4 | 5 | 6; - creationData(): moment$MomentCreationData; - millisecond(number: number): this; - milliseconds(number: number): this; - millisecond(): number; - milliseconds(): number; - second(number: number): this; - seconds(number: number): this; - second(): number; - seconds(): number; - minute(number: number): this; - minutes(number: number): this; - minute(): number; - minutes(): number; - hour(number: number): this; - hours(number: number): this; - hour(): number; - hours(): number; - date(number: number): this; - dates(number: number): this; - date(): number; - dates(): number; - day(day: number | string): this; - days(day: number | string): this; - day(): number; - days(): number; - weekday(number: number): this; - weekday(): number; - isoWeekday(day: number | string): this; - isoWeekday(): number; - dayOfYear(day: number): this; - dayOfYear(): number; - week(number: number): this; - weeks(number: number): this; - week(): number; - weeks(): number; - isoWeek(number: number): this; - isoWeeks(number: number): this; - isoWeek(): number; - isoWeeks(): number; - month(number: number): this; - months(number: number): this; - month(): number; - months(): number; - quarter(number: number): this; - quarter(): number; - year(number: number): this; - years(number: number): this; - year(): number; - years(): number; - weekYear(number: number): this; - weekYear(): number; - isoWeekYear(number: number): this; - isoWeekYear(): number; - weeksInYear(): number; - isoWeeksInYear(): number; - get(string: string): number; - set(unit: string, value: number): this; - set(options: { [unit: string]: number }): this; - static max(...dates: Array): moment$Moment; - static max(dates: Array): moment$Moment; - static min(...dates: Array): moment$Moment; - static min(dates: Array): moment$Moment; - add( - value: number | moment$MomentDuration | moment$Moment | Object, - unit?: string - ): this; - subtract( - value: number | moment$MomentDuration | moment$Moment | string | Object, - unit?: string - ): this; - startOf(unit: string): this; - endOf(unit: string): this; - local(): this; - utc(): this; - utcOffset( - offset: number | string, - keepLocalTime?: boolean, - keepMinutes?: boolean - ): this; - utcOffset(): number; - format(format?: string): string; - fromNow(removeSuffix?: boolean): string; - from( - value: moment$Moment | string | number | Date | Array, - removePrefix?: boolean - ): string; - toNow(removePrefix?: boolean): string; - to( - value: moment$Moment | string | number | Date | Array, - removePrefix?: boolean - ): string; - calendar(refTime?: any, formats?: moment$CalendarFormats): string; - diff( - date: moment$Moment | string | number | Date | Array, - format?: string, - floating?: boolean - ): number; - valueOf(): number; - unix(): number; - daysInMonth(): number; - toDate(): Date; - toArray(): Array; - toJSON(): string; - toISOString(keepOffset?: boolean): string; - toObject(): moment$MomentObject; - isBefore( - date?: moment$Moment | string | number | Date | Array, - units?: ?string - ): boolean; - isSame( - date?: moment$Moment | string | number | Date | Array, - units?: ?string - ): boolean; - isAfter( - date?: moment$Moment | string | number | Date | Array, - units?: ?string - ): boolean; - isSameOrBefore( - date?: moment$Moment | string | number | Date | Array, - units?: ?string - ): boolean; - isSameOrAfter( - date?: moment$Moment | string | number | Date | Array, - units?: ?string - ): boolean; - isBetween( - from: moment$Moment | string | number | Date | Array, - to: moment$Moment | string | number | Date | Array, - units?: string, - inclusivity?: moment$Inclusivity - ): boolean; - isDST(): boolean; - isDSTShifted(): boolean; - isLeapYear(): boolean; - clone(): moment$Moment; - static isMoment(obj: any): boolean; - static isDate(obj: any): boolean; - static updateLocale(locale: string, localeData?: ?Object): void; - static defineLocale(locale: string, localeData?: ?Object): void; - static locale(locale?: string, localeData?: Object): string; - static locale(locales: Array): string; - locale(locale: string, customization?: Object | null): moment$Moment; - locale(): string; - static months(): Array; - static monthsShort(): Array; - static now(): number; - static weekdays(): Array; - static weekdaysShort(): Array; - static weekdaysMin(): Array; - static months(): string; - static monthsShort(): string; - static weekdays(): string; - static weekdaysShort(): string; - static weekdaysMin(): string; - static localeData(key?: string): moment$LocaleData; - localeData(): moment$LocaleData; - static duration( - value: number | Object | string, - unit?: string - ): moment$MomentDuration; - static isDuration(obj: any): boolean; - static normalizeUnits(unit: string): string; - static invalid(object: any): moment$Moment; -} - -declare module 'moment' { - declare module.exports: Class; -} diff --git a/flow-typed/npm/moniker_vx.x.x.js b/flow-typed/npm/moniker_vx.x.x.js deleted file mode 100644 index 3151ec1..0000000 --- a/flow-typed/npm/moniker_vx.x.x.js +++ /dev/null @@ -1,46 +0,0 @@ -// flow-typed signature: 38bef6fa4c49572bbcfbcd6afc1015fa -// flow-typed version: <>/moniker_v^0.1.2/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'moniker' - * - * 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 'moniker' { - 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 'moniker/examples/moniker' { - declare module.exports: any; -} - -declare module 'moniker/lib/moniker' { - declare module.exports: any; -} - -declare module 'moniker/test/moniker' { - declare module.exports: any; -} - -// Filename aliases -declare module 'moniker/examples/moniker.js' { - declare module.exports: $Exports<'moniker/examples/moniker'>; -} -declare module 'moniker/lib/moniker.js' { - declare module.exports: $Exports<'moniker/lib/moniker'>; -} -declare module 'moniker/test/moniker.js' { - declare module.exports: $Exports<'moniker/test/moniker'>; -} diff --git a/flow-typed/npm/nanoid_vx.x.x.js b/flow-typed/npm/nanoid_vx.x.x.js deleted file mode 100644 index cb12b53..0000000 --- a/flow-typed/npm/nanoid_vx.x.x.js +++ /dev/null @@ -1,129 +0,0 @@ -// flow-typed signature: 992c245c5628a3bc1775f9c8b188d229 -// flow-typed version: <>/nanoid_v^2.0.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'nanoid' - * - * 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 'nanoid' { - 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 'nanoid/async/format' { - declare module.exports: any; -} - -declare module 'nanoid/async/generate' { - declare module.exports: any; -} - -declare module 'nanoid/async/index.browser' { - declare module.exports: any; -} - -declare module 'nanoid/async/index' { - declare module.exports: any; -} - -declare module 'nanoid/async/random.browser' { - declare module.exports: any; -} - -declare module 'nanoid/async/random' { - declare module.exports: any; -} - -declare module 'nanoid/format' { - declare module.exports: any; -} - -declare module 'nanoid/generate' { - declare module.exports: any; -} - -declare module 'nanoid/index.browser' { - declare module.exports: any; -} - -declare module 'nanoid/non-secure/generate' { - declare module.exports: any; -} - -declare module 'nanoid/non-secure/index' { - declare module.exports: any; -} - -declare module 'nanoid/random.browser' { - declare module.exports: any; -} - -declare module 'nanoid/random' { - declare module.exports: any; -} - -declare module 'nanoid/url' { - declare module.exports: any; -} - -// Filename aliases -declare module 'nanoid/async/format.js' { - declare module.exports: $Exports<'nanoid/async/format'>; -} -declare module 'nanoid/async/generate.js' { - declare module.exports: $Exports<'nanoid/async/generate'>; -} -declare module 'nanoid/async/index.browser.js' { - declare module.exports: $Exports<'nanoid/async/index.browser'>; -} -declare module 'nanoid/async/index.js' { - declare module.exports: $Exports<'nanoid/async/index'>; -} -declare module 'nanoid/async/random.browser.js' { - declare module.exports: $Exports<'nanoid/async/random.browser'>; -} -declare module 'nanoid/async/random.js' { - declare module.exports: $Exports<'nanoid/async/random'>; -} -declare module 'nanoid/format.js' { - declare module.exports: $Exports<'nanoid/format'>; -} -declare module 'nanoid/generate.js' { - declare module.exports: $Exports<'nanoid/generate'>; -} -declare module 'nanoid/index.browser.js' { - declare module.exports: $Exports<'nanoid/index.browser'>; -} -declare module 'nanoid/index' { - declare module.exports: $Exports<'nanoid'>; -} -declare module 'nanoid/index.js' { - declare module.exports: $Exports<'nanoid'>; -} -declare module 'nanoid/non-secure/generate.js' { - declare module.exports: $Exports<'nanoid/non-secure/generate'>; -} -declare module 'nanoid/non-secure/index.js' { - declare module.exports: $Exports<'nanoid/non-secure/index'>; -} -declare module 'nanoid/random.browser.js' { - declare module.exports: $Exports<'nanoid/random.browser'>; -} -declare module 'nanoid/random.js' { - declare module.exports: $Exports<'nanoid/random'>; -} -declare module 'nanoid/url.js' { - declare module.exports: $Exports<'nanoid/url'>; -} diff --git a/flow-typed/npm/next-redux-wrapper_vx.x.x.js b/flow-typed/npm/next-redux-wrapper_vx.x.x.js deleted file mode 100644 index bf21c24..0000000 --- a/flow-typed/npm/next-redux-wrapper_vx.x.x.js +++ /dev/null @@ -1,74 +0,0 @@ -// flow-typed signature: 4d2b06c9821bfefd96d89afab05f912d -// flow-typed version: <>/next-redux-wrapper_v^3.0.0-alpha.2/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'next-redux-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 'next-redux-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 'next-redux-wrapper/coverage/lcov-report/block-navigation' { - declare module.exports: any; -} - -declare module 'next-redux-wrapper/coverage/lcov-report/prettify' { - declare module.exports: any; -} - -declare module 'next-redux-wrapper/coverage/lcov-report/sorter' { - declare module.exports: any; -} - -declare module 'next-redux-wrapper/es6/index' { - declare module.exports: any; -} - -declare module 'next-redux-wrapper/es6/index.spec' { - declare module.exports: any; -} - -declare module 'next-redux-wrapper/lib/index' { - declare module.exports: any; -} - -declare module 'next-redux-wrapper/lib/index.spec' { - declare module.exports: any; -} - -// Filename aliases -declare module 'next-redux-wrapper/coverage/lcov-report/block-navigation.js' { - declare module.exports: $Exports<'next-redux-wrapper/coverage/lcov-report/block-navigation'>; -} -declare module 'next-redux-wrapper/coverage/lcov-report/prettify.js' { - declare module.exports: $Exports<'next-redux-wrapper/coverage/lcov-report/prettify'>; -} -declare module 'next-redux-wrapper/coverage/lcov-report/sorter.js' { - declare module.exports: $Exports<'next-redux-wrapper/coverage/lcov-report/sorter'>; -} -declare module 'next-redux-wrapper/es6/index.js' { - declare module.exports: $Exports<'next-redux-wrapper/es6/index'>; -} -declare module 'next-redux-wrapper/es6/index.spec.js' { - declare module.exports: $Exports<'next-redux-wrapper/es6/index.spec'>; -} -declare module 'next-redux-wrapper/lib/index.js' { - declare module.exports: $Exports<'next-redux-wrapper/lib/index'>; -} -declare module 'next-redux-wrapper/lib/index.spec.js' { - declare module.exports: $Exports<'next-redux-wrapper/lib/index.spec'>; -} diff --git a/flow-typed/npm/next_vx.x.x.js b/flow-typed/npm/next_vx.x.x.js deleted file mode 100644 index b01ab29..0000000 --- a/flow-typed/npm/next_vx.x.x.js +++ /dev/null @@ -1,676 +0,0 @@ -// flow-typed signature: 1c8f1d21224d6a9acdd7743fb382f28d -// flow-typed version: <>/next_v^8.0.4/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'next' - * - * 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 'next' { - 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 'next/amp' { - declare module.exports: any; -} - -declare module 'next/app' { - declare module.exports: any; -} - -declare module 'next/babel' { - declare module.exports: any; -} - -declare module 'next/client' { - declare module.exports: any; -} - -declare module 'next/config' { - declare module.exports: any; -} - -declare module 'next/constants' { - declare module.exports: any; -} - -declare module 'next/dist/build/babel/plugins/amp-attributes' { - declare module.exports: any; -} - -declare module 'next/dist/build/babel/plugins/commonjs' { - declare module.exports: any; -} - -declare module 'next/dist/build/babel/plugins/react-loadable-plugin' { - declare module.exports: any; -} - -declare module 'next/dist/build/babel/preset' { - declare module.exports: any; -} - -declare module 'next/dist/build/compiler' { - declare module.exports: any; -} - -declare module 'next/dist/build/entries' { - declare module.exports: any; -} - -declare module 'next/dist/build/generate-build-id' { - declare module.exports: any; -} - -declare module 'next/dist/build/index' { - declare module.exports: any; -} - -declare module 'next/dist/build/is-writeable' { - declare module.exports: any; -} - -declare module 'next/dist/build/output/exit' { - declare module.exports: any; -} - -declare module 'next/dist/build/output/index' { - declare module.exports: any; -} - -declare module 'next/dist/build/output/store' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack-config' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/loaders/emit-file-loader' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/loaders/next-babel-loader' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/loaders/next-client-pages-loader' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/loaders/next-serverless-loader' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/loaders/noop-loader' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/all-modules-identified-plugin' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/build-manifest-plugin' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/chunk-names-plugin' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/hashed-chunk-ids-plugin' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/nextjs-require-cache-hot-reloader' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/nextjs-ssr-import' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/nextjs-ssr-module-cache' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/pages-manifest-plugin' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/react-loadable-plugin' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/serverless-plugin' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/shared-runtime-plugin' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/terser-webpack-plugin/src/index' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/terser-webpack-plugin/src/minify' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/terser-webpack-plugin/src/TaskRunner' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/terser-webpack-plugin/src/worker' { - declare module.exports: any; -} - -declare module 'next/dist/build/webpack/plugins/unlink-removed-pages-plugin' { - declare module.exports: any; -} - -declare module 'next/dist/build/write-build-id' { - declare module.exports: any; -} - -declare module 'next/dist/cli/next-build' { - declare module.exports: any; -} - -declare module 'next/dist/cli/next-dev' { - declare module.exports: any; -} - -declare module 'next/dist/cli/next-export' { - declare module.exports: any; -} - -declare module 'next/dist/cli/next-start' { - declare module.exports: any; -} - -declare module 'next/dist/client/amp-dev' { - declare module.exports: any; -} - -declare module 'next/dist/client/dev-error-overlay/eventsource' { - declare module.exports: any; -} - -declare module 'next/dist/client/dev-error-overlay/format-webpack-messages' { - declare module.exports: any; -} - -declare module 'next/dist/client/dev-error-overlay/hot-dev-client' { - declare module.exports: any; -} - -declare module 'next/dist/client/error-boundary' { - declare module.exports: any; -} - -declare module 'next/dist/client/event-source-polyfill' { - declare module.exports: any; -} - -declare module 'next/dist/client/head-manager' { - declare module.exports: any; -} - -declare module 'next/dist/client/index' { - declare module.exports: any; -} - -declare module 'next/dist/client/link' { - declare module.exports: any; -} - -declare module 'next/dist/client/next-dev' { - declare module.exports: any; -} - -declare module 'next/dist/client/next' { - declare module.exports: any; -} - -declare module 'next/dist/client/noop' { - declare module.exports: any; -} - -declare module 'next/dist/client/on-demand-entries-client' { - declare module.exports: any; -} - -declare module 'next/dist/client/on-demand-entries-utils' { - declare module.exports: any; -} - -declare module 'next/dist/client/page-loader' { - declare module.exports: any; -} - -declare module 'next/dist/client/router' { - declare module.exports: any; -} - -declare module 'next/dist/client/source-map-support' { - declare module.exports: any; -} - -declare module 'next/dist/client/webpack-hot-middleware-client' { - declare module.exports: any; -} - -declare module 'next/dist/client/with-router' { - declare module.exports: any; -} - -declare module 'next/dist/compiled/arg/index' { - declare module.exports: any; -} - -declare module 'next/dist/compiled/nanoid/index' { - declare module.exports: any; -} - -declare module 'next/dist/compiled/resolve/index' { - declare module.exports: any; -} - -declare module 'next/dist/compiled/text-table/index' { - declare module.exports: any; -} - -declare module 'next/dist/compiled/unistore/unistore' { - declare module.exports: any; -} - -declare module 'next/dist/export/index' { - declare module.exports: any; -} - -declare module 'next/dist/export/worker' { - declare module.exports: any; -} - -declare module 'next/dist/lib/constants' { - declare module.exports: any; -} - -declare module 'next/dist/lib/recursive-delete' { - declare module.exports: any; -} - -declare module 'next/dist/lib/recursive-readdir' { - declare module.exports: any; -} - -declare module 'next/dist/pages/_app' { - declare module.exports: any; -} - -declare module 'next/dist/pages/_document' { - declare module.exports: any; -} - -declare module 'next/dist/pages/_error' { - declare module.exports: any; -} - -declare module 'next/dist/server/error-debug' { - declare module.exports: any; -} - -declare module 'next/dist/server/hot-reloader' { - declare module.exports: any; -} - -declare module 'next/dist/server/htmlescape' { - declare module.exports: any; -} - -declare module 'next/dist/server/lib/error-overlay-middleware' { - declare module.exports: any; -} - -declare module 'next/dist/server/lib/find-page-file' { - declare module.exports: any; -} - -declare module 'next/dist/server/lib/start-server' { - declare module.exports: any; -} - -declare module 'next/dist/server/lib/utils' { - declare module.exports: any; -} - -declare module 'next/dist/server/next-dev-server' { - declare module.exports: any; -} - -declare module 'next/dist/server/next' { - declare module.exports: any; -} - -declare module 'next/dist/server/on-demand-entry-handler' { - declare module.exports: any; -} - -declare module 'next/document' { - declare module.exports: any; -} - -declare module 'next/dynamic' { - declare module.exports: any; -} - -declare module 'next/error' { - declare module.exports: any; -} - -declare module 'next/head' { - declare module.exports: any; -} - -declare module 'next/link' { - declare module.exports: any; -} - -declare module 'next/router' { - declare module.exports: any; -} - -// Filename aliases -declare module 'next/amp.js' { - declare module.exports: $Exports<'next/amp'>; -} -declare module 'next/app.js' { - declare module.exports: $Exports<'next/app'>; -} -declare module 'next/babel.js' { - declare module.exports: $Exports<'next/babel'>; -} -declare module 'next/client.js' { - declare module.exports: $Exports<'next/client'>; -} -declare module 'next/config.js' { - declare module.exports: $Exports<'next/config'>; -} -declare module 'next/constants.js' { - declare module.exports: $Exports<'next/constants'>; -} -declare module 'next/dist/build/babel/plugins/amp-attributes.js' { - declare module.exports: $Exports<'next/dist/build/babel/plugins/amp-attributes'>; -} -declare module 'next/dist/build/babel/plugins/commonjs.js' { - declare module.exports: $Exports<'next/dist/build/babel/plugins/commonjs'>; -} -declare module 'next/dist/build/babel/plugins/react-loadable-plugin.js' { - declare module.exports: $Exports<'next/dist/build/babel/plugins/react-loadable-plugin'>; -} -declare module 'next/dist/build/babel/preset.js' { - declare module.exports: $Exports<'next/dist/build/babel/preset'>; -} -declare module 'next/dist/build/compiler.js' { - declare module.exports: $Exports<'next/dist/build/compiler'>; -} -declare module 'next/dist/build/entries.js' { - declare module.exports: $Exports<'next/dist/build/entries'>; -} -declare module 'next/dist/build/generate-build-id.js' { - declare module.exports: $Exports<'next/dist/build/generate-build-id'>; -} -declare module 'next/dist/build/index.js' { - declare module.exports: $Exports<'next/dist/build/index'>; -} -declare module 'next/dist/build/is-writeable.js' { - declare module.exports: $Exports<'next/dist/build/is-writeable'>; -} -declare module 'next/dist/build/output/exit.js' { - declare module.exports: $Exports<'next/dist/build/output/exit'>; -} -declare module 'next/dist/build/output/index.js' { - declare module.exports: $Exports<'next/dist/build/output/index'>; -} -declare module 'next/dist/build/output/store.js' { - declare module.exports: $Exports<'next/dist/build/output/store'>; -} -declare module 'next/dist/build/webpack-config.js' { - declare module.exports: $Exports<'next/dist/build/webpack-config'>; -} -declare module 'next/dist/build/webpack/loaders/emit-file-loader.js' { - declare module.exports: $Exports<'next/dist/build/webpack/loaders/emit-file-loader'>; -} -declare module 'next/dist/build/webpack/loaders/next-babel-loader.js' { - declare module.exports: $Exports<'next/dist/build/webpack/loaders/next-babel-loader'>; -} -declare module 'next/dist/build/webpack/loaders/next-client-pages-loader.js' { - declare module.exports: $Exports<'next/dist/build/webpack/loaders/next-client-pages-loader'>; -} -declare module 'next/dist/build/webpack/loaders/next-serverless-loader.js' { - declare module.exports: $Exports<'next/dist/build/webpack/loaders/next-serverless-loader'>; -} -declare module 'next/dist/build/webpack/loaders/noop-loader.js' { - declare module.exports: $Exports<'next/dist/build/webpack/loaders/noop-loader'>; -} -declare module 'next/dist/build/webpack/plugins/all-modules-identified-plugin.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/all-modules-identified-plugin'>; -} -declare module 'next/dist/build/webpack/plugins/build-manifest-plugin.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/build-manifest-plugin'>; -} -declare module 'next/dist/build/webpack/plugins/chunk-names-plugin.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/chunk-names-plugin'>; -} -declare module 'next/dist/build/webpack/plugins/hashed-chunk-ids-plugin.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/hashed-chunk-ids-plugin'>; -} -declare module 'next/dist/build/webpack/plugins/nextjs-require-cache-hot-reloader.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/nextjs-require-cache-hot-reloader'>; -} -declare module 'next/dist/build/webpack/plugins/nextjs-ssr-import.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/nextjs-ssr-import'>; -} -declare module 'next/dist/build/webpack/plugins/nextjs-ssr-module-cache.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/nextjs-ssr-module-cache'>; -} -declare module 'next/dist/build/webpack/plugins/pages-manifest-plugin.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/pages-manifest-plugin'>; -} -declare module 'next/dist/build/webpack/plugins/react-loadable-plugin.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/react-loadable-plugin'>; -} -declare module 'next/dist/build/webpack/plugins/serverless-plugin.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/serverless-plugin'>; -} -declare module 'next/dist/build/webpack/plugins/shared-runtime-plugin.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/shared-runtime-plugin'>; -} -declare module 'next/dist/build/webpack/plugins/terser-webpack-plugin/src/index.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/terser-webpack-plugin/src/index'>; -} -declare module 'next/dist/build/webpack/plugins/terser-webpack-plugin/src/minify.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/terser-webpack-plugin/src/minify'>; -} -declare module 'next/dist/build/webpack/plugins/terser-webpack-plugin/src/TaskRunner.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/terser-webpack-plugin/src/TaskRunner'>; -} -declare module 'next/dist/build/webpack/plugins/terser-webpack-plugin/src/worker.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/terser-webpack-plugin/src/worker'>; -} -declare module 'next/dist/build/webpack/plugins/unlink-removed-pages-plugin.js' { - declare module.exports: $Exports<'next/dist/build/webpack/plugins/unlink-removed-pages-plugin'>; -} -declare module 'next/dist/build/write-build-id.js' { - declare module.exports: $Exports<'next/dist/build/write-build-id'>; -} -declare module 'next/dist/cli/next-build.js' { - declare module.exports: $Exports<'next/dist/cli/next-build'>; -} -declare module 'next/dist/cli/next-dev.js' { - declare module.exports: $Exports<'next/dist/cli/next-dev'>; -} -declare module 'next/dist/cli/next-export.js' { - declare module.exports: $Exports<'next/dist/cli/next-export'>; -} -declare module 'next/dist/cli/next-start.js' { - declare module.exports: $Exports<'next/dist/cli/next-start'>; -} -declare module 'next/dist/client/amp-dev.js' { - declare module.exports: $Exports<'next/dist/client/amp-dev'>; -} -declare module 'next/dist/client/dev-error-overlay/eventsource.js' { - declare module.exports: $Exports<'next/dist/client/dev-error-overlay/eventsource'>; -} -declare module 'next/dist/client/dev-error-overlay/format-webpack-messages.js' { - declare module.exports: $Exports<'next/dist/client/dev-error-overlay/format-webpack-messages'>; -} -declare module 'next/dist/client/dev-error-overlay/hot-dev-client.js' { - declare module.exports: $Exports<'next/dist/client/dev-error-overlay/hot-dev-client'>; -} -declare module 'next/dist/client/error-boundary.js' { - declare module.exports: $Exports<'next/dist/client/error-boundary'>; -} -declare module 'next/dist/client/event-source-polyfill.js' { - declare module.exports: $Exports<'next/dist/client/event-source-polyfill'>; -} -declare module 'next/dist/client/head-manager.js' { - declare module.exports: $Exports<'next/dist/client/head-manager'>; -} -declare module 'next/dist/client/index.js' { - declare module.exports: $Exports<'next/dist/client/index'>; -} -declare module 'next/dist/client/link.js' { - declare module.exports: $Exports<'next/dist/client/link'>; -} -declare module 'next/dist/client/next-dev.js' { - declare module.exports: $Exports<'next/dist/client/next-dev'>; -} -declare module 'next/dist/client/next.js' { - declare module.exports: $Exports<'next/dist/client/next'>; -} -declare module 'next/dist/client/noop.js' { - declare module.exports: $Exports<'next/dist/client/noop'>; -} -declare module 'next/dist/client/on-demand-entries-client.js' { - declare module.exports: $Exports<'next/dist/client/on-demand-entries-client'>; -} -declare module 'next/dist/client/on-demand-entries-utils.js' { - declare module.exports: $Exports<'next/dist/client/on-demand-entries-utils'>; -} -declare module 'next/dist/client/page-loader.js' { - declare module.exports: $Exports<'next/dist/client/page-loader'>; -} -declare module 'next/dist/client/router.js' { - declare module.exports: $Exports<'next/dist/client/router'>; -} -declare module 'next/dist/client/source-map-support.js' { - declare module.exports: $Exports<'next/dist/client/source-map-support'>; -} -declare module 'next/dist/client/webpack-hot-middleware-client.js' { - declare module.exports: $Exports<'next/dist/client/webpack-hot-middleware-client'>; -} -declare module 'next/dist/client/with-router.js' { - declare module.exports: $Exports<'next/dist/client/with-router'>; -} -declare module 'next/dist/compiled/arg/index.js' { - declare module.exports: $Exports<'next/dist/compiled/arg/index'>; -} -declare module 'next/dist/compiled/nanoid/index.js' { - declare module.exports: $Exports<'next/dist/compiled/nanoid/index'>; -} -declare module 'next/dist/compiled/resolve/index.js' { - declare module.exports: $Exports<'next/dist/compiled/resolve/index'>; -} -declare module 'next/dist/compiled/text-table/index.js' { - declare module.exports: $Exports<'next/dist/compiled/text-table/index'>; -} -declare module 'next/dist/compiled/unistore/unistore.js' { - declare module.exports: $Exports<'next/dist/compiled/unistore/unistore'>; -} -declare module 'next/dist/export/index.js' { - declare module.exports: $Exports<'next/dist/export/index'>; -} -declare module 'next/dist/export/worker.js' { - declare module.exports: $Exports<'next/dist/export/worker'>; -} -declare module 'next/dist/lib/constants.js' { - declare module.exports: $Exports<'next/dist/lib/constants'>; -} -declare module 'next/dist/lib/recursive-delete.js' { - declare module.exports: $Exports<'next/dist/lib/recursive-delete'>; -} -declare module 'next/dist/lib/recursive-readdir.js' { - declare module.exports: $Exports<'next/dist/lib/recursive-readdir'>; -} -declare module 'next/dist/pages/_app.js' { - declare module.exports: $Exports<'next/dist/pages/_app'>; -} -declare module 'next/dist/pages/_document.js' { - declare module.exports: $Exports<'next/dist/pages/_document'>; -} -declare module 'next/dist/pages/_error.js' { - declare module.exports: $Exports<'next/dist/pages/_error'>; -} -declare module 'next/dist/server/error-debug.js' { - declare module.exports: $Exports<'next/dist/server/error-debug'>; -} -declare module 'next/dist/server/hot-reloader.js' { - declare module.exports: $Exports<'next/dist/server/hot-reloader'>; -} -declare module 'next/dist/server/htmlescape.js' { - declare module.exports: $Exports<'next/dist/server/htmlescape'>; -} -declare module 'next/dist/server/lib/error-overlay-middleware.js' { - declare module.exports: $Exports<'next/dist/server/lib/error-overlay-middleware'>; -} -declare module 'next/dist/server/lib/find-page-file.js' { - declare module.exports: $Exports<'next/dist/server/lib/find-page-file'>; -} -declare module 'next/dist/server/lib/start-server.js' { - declare module.exports: $Exports<'next/dist/server/lib/start-server'>; -} -declare module 'next/dist/server/lib/utils.js' { - declare module.exports: $Exports<'next/dist/server/lib/utils'>; -} -declare module 'next/dist/server/next-dev-server.js' { - declare module.exports: $Exports<'next/dist/server/next-dev-server'>; -} -declare module 'next/dist/server/next.js' { - declare module.exports: $Exports<'next/dist/server/next'>; -} -declare module 'next/dist/server/on-demand-entry-handler.js' { - declare module.exports: $Exports<'next/dist/server/on-demand-entry-handler'>; -} -declare module 'next/document.js' { - declare module.exports: $Exports<'next/document'>; -} -declare module 'next/dynamic.js' { - declare module.exports: $Exports<'next/dynamic'>; -} -declare module 'next/error.js' { - declare module.exports: $Exports<'next/error'>; -} -declare module 'next/head.js' { - declare module.exports: $Exports<'next/head'>; -} -declare module 'next/link.js' { - declare module.exports: $Exports<'next/link'>; -} -declare module 'next/router.js' { - declare module.exports: $Exports<'next/router'>; -} diff --git a/flow-typed/npm/npm-run-all_vx.x.x.js b/flow-typed/npm/npm-run-all_vx.x.x.js deleted file mode 100644 index d6395f9..0000000 --- a/flow-typed/npm/npm-run-all_vx.x.x.js +++ /dev/null @@ -1,186 +0,0 @@ -// flow-typed signature: d3e3f20e25052acefaea4789ae208913 -// flow-typed version: <>/npm-run-all_v^4.1.5/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'npm-run-all' - * - * 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 'npm-run-all' { - 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 'npm-run-all/bin/common/bootstrap' { - declare module.exports: any; -} - -declare module 'npm-run-all/bin/common/parse-cli-args' { - declare module.exports: any; -} - -declare module 'npm-run-all/bin/common/version' { - declare module.exports: any; -} - -declare module 'npm-run-all/bin/npm-run-all/help' { - declare module.exports: any; -} - -declare module 'npm-run-all/bin/npm-run-all/index' { - declare module.exports: any; -} - -declare module 'npm-run-all/bin/npm-run-all/main' { - declare module.exports: any; -} - -declare module 'npm-run-all/bin/run-p/help' { - declare module.exports: any; -} - -declare module 'npm-run-all/bin/run-p/index' { - declare module.exports: any; -} - -declare module 'npm-run-all/bin/run-p/main' { - declare module.exports: any; -} - -declare module 'npm-run-all/bin/run-s/help' { - declare module.exports: any; -} - -declare module 'npm-run-all/bin/run-s/index' { - declare module.exports: any; -} - -declare module 'npm-run-all/bin/run-s/main' { - declare module.exports: any; -} - -declare module 'npm-run-all/lib/create-header' { - declare module.exports: any; -} - -declare module 'npm-run-all/lib/create-prefix-transform-stream' { - declare module.exports: any; -} - -declare module 'npm-run-all/lib/index' { - declare module.exports: any; -} - -declare module 'npm-run-all/lib/match-tasks' { - declare module.exports: any; -} - -declare module 'npm-run-all/lib/npm-run-all-error' { - declare module.exports: any; -} - -declare module 'npm-run-all/lib/read-package-json' { - declare module.exports: any; -} - -declare module 'npm-run-all/lib/run-task' { - declare module.exports: any; -} - -declare module 'npm-run-all/lib/run-tasks' { - declare module.exports: any; -} - -declare module 'npm-run-all/lib/spawn-posix' { - declare module.exports: any; -} - -declare module 'npm-run-all/lib/spawn-win32' { - declare module.exports: any; -} - -declare module 'npm-run-all/lib/spawn' { - declare module.exports: any; -} - -// Filename aliases -declare module 'npm-run-all/bin/common/bootstrap.js' { - declare module.exports: $Exports<'npm-run-all/bin/common/bootstrap'>; -} -declare module 'npm-run-all/bin/common/parse-cli-args.js' { - declare module.exports: $Exports<'npm-run-all/bin/common/parse-cli-args'>; -} -declare module 'npm-run-all/bin/common/version.js' { - declare module.exports: $Exports<'npm-run-all/bin/common/version'>; -} -declare module 'npm-run-all/bin/npm-run-all/help.js' { - declare module.exports: $Exports<'npm-run-all/bin/npm-run-all/help'>; -} -declare module 'npm-run-all/bin/npm-run-all/index.js' { - declare module.exports: $Exports<'npm-run-all/bin/npm-run-all/index'>; -} -declare module 'npm-run-all/bin/npm-run-all/main.js' { - declare module.exports: $Exports<'npm-run-all/bin/npm-run-all/main'>; -} -declare module 'npm-run-all/bin/run-p/help.js' { - declare module.exports: $Exports<'npm-run-all/bin/run-p/help'>; -} -declare module 'npm-run-all/bin/run-p/index.js' { - declare module.exports: $Exports<'npm-run-all/bin/run-p/index'>; -} -declare module 'npm-run-all/bin/run-p/main.js' { - declare module.exports: $Exports<'npm-run-all/bin/run-p/main'>; -} -declare module 'npm-run-all/bin/run-s/help.js' { - declare module.exports: $Exports<'npm-run-all/bin/run-s/help'>; -} -declare module 'npm-run-all/bin/run-s/index.js' { - declare module.exports: $Exports<'npm-run-all/bin/run-s/index'>; -} -declare module 'npm-run-all/bin/run-s/main.js' { - declare module.exports: $Exports<'npm-run-all/bin/run-s/main'>; -} -declare module 'npm-run-all/lib/create-header.js' { - declare module.exports: $Exports<'npm-run-all/lib/create-header'>; -} -declare module 'npm-run-all/lib/create-prefix-transform-stream.js' { - declare module.exports: $Exports<'npm-run-all/lib/create-prefix-transform-stream'>; -} -declare module 'npm-run-all/lib/index.js' { - declare module.exports: $Exports<'npm-run-all/lib/index'>; -} -declare module 'npm-run-all/lib/match-tasks.js' { - declare module.exports: $Exports<'npm-run-all/lib/match-tasks'>; -} -declare module 'npm-run-all/lib/npm-run-all-error.js' { - declare module.exports: $Exports<'npm-run-all/lib/npm-run-all-error'>; -} -declare module 'npm-run-all/lib/read-package-json.js' { - declare module.exports: $Exports<'npm-run-all/lib/read-package-json'>; -} -declare module 'npm-run-all/lib/run-task.js' { - declare module.exports: $Exports<'npm-run-all/lib/run-task'>; -} -declare module 'npm-run-all/lib/run-tasks.js' { - declare module.exports: $Exports<'npm-run-all/lib/run-tasks'>; -} -declare module 'npm-run-all/lib/spawn-posix.js' { - declare module.exports: $Exports<'npm-run-all/lib/spawn-posix'>; -} -declare module 'npm-run-all/lib/spawn-win32.js' { - declare module.exports: $Exports<'npm-run-all/lib/spawn-win32'>; -} -declare module 'npm-run-all/lib/spawn.js' { - declare module.exports: $Exports<'npm-run-all/lib/spawn'>; -} diff --git a/flow-typed/npm/pg-hstore_vx.x.x.js b/flow-typed/npm/pg-hstore_vx.x.x.js deleted file mode 100644 index c3e3ab6..0000000 --- a/flow-typed/npm/pg-hstore_vx.x.x.js +++ /dev/null @@ -1,53 +0,0 @@ -// flow-typed signature: 8e8c9a84f803a59256f9f3e1cbd881cf -// flow-typed version: <>/pg-hstore_v^2.3.2/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'pg-hstore' - * - * 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 'pg-hstore' { - 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 'pg-hstore/lib/index' { - declare module.exports: any; -} - -declare module 'pg-hstore/test/index' { - declare module.exports: any; -} - -declare module 'pg-hstore/test/parse' { - declare module.exports: any; -} - -declare module 'pg-hstore/test/stringify' { - declare module.exports: any; -} - -// Filename aliases -declare module 'pg-hstore/lib/index.js' { - declare module.exports: $Exports<'pg-hstore/lib/index'>; -} -declare module 'pg-hstore/test/index.js' { - declare module.exports: $Exports<'pg-hstore/test/index'>; -} -declare module 'pg-hstore/test/parse.js' { - declare module.exports: $Exports<'pg-hstore/test/parse'>; -} -declare module 'pg-hstore/test/stringify.js' { - declare module.exports: $Exports<'pg-hstore/test/stringify'>; -} diff --git a/flow-typed/npm/pg_v7.x.x.js b/flow-typed/npm/pg_v7.x.x.js deleted file mode 100644 index b66ac6e..0000000 --- a/flow-typed/npm/pg_v7.x.x.js +++ /dev/null @@ -1,308 +0,0 @@ -// flow-typed signature: 19ef65e9d513ad03294860e751b933fc -// flow-typed version: 2493e23acc/pg_v7.x.x/flow_>=v0.28.x - -declare module pg { - // Note: Currently There are some issues in Function overloading. - // https://github.com/facebook/flow/issues/2423 - // So i temporarily remove the - // `((event: string, listener: Function) => EventEmitter );` - // from all overloading for EventEmitter.on(). - - // `any` types exised in this file, cause of currently `mixed` did not work well - // in Function Overloading. - - // `Function` types exised in this file, cause of they come from another - // untyped npm lib. - - /* Cause of > - /* - * PgPoolConfig's properties are passed unchanged to both - * the node-postgres Client constructor and the node-pool constructor - * allowing you to fully configure the behavior of both - * node-pool (https://github.com/coopernurse/node-pool) - */ - declare type PgPoolConfig = { - // node-pool ---------------- - name: string, - create: Function, - destroy: Function, - max: number, - min: number, - refreshIdle: boolean, - idleTimeoutMillis: number, - connectionTimeoutMillis: number, - reapIntervalMillis: number, - returnToHead: boolean, - priorityRange: number, - validate: Function, - validateAsync: Function, - log: Function, - - // node-postgres Client ------ - // database connection string to define some other config parameters - connectionString: string, - // database user's name - user: string, - // name of database to connect - database: string, - // database user's password - password: string, - // database port - port: number, - // database host. defaults to localhost - host?: string, - // whether to try SSL/TLS to connect to server. default value: false - ssl?: boolean, - // name displayed in the pg_stat_activity view and included in CSV log entries - // default value: process.env.PGAPPNAME - application_name?: string, - // fallback value for the application_name configuration parameter - // default value: false - fallback_application_name?: string, - // max milliseconds any query using this connection will execute for before timing out in error. false=unlimited - // default value: false - statement_timeout?: boolean | number, - // pg-pool - Client: mixed, - Promise: mixed, - onCreate: Function, - }; - - /* - * Not extends from Client, cause some of Client's functions(ex: connect and end) - * should not be used by PoolClient (which returned from Pool.connect). - */ - declare type PoolClient = { - release(error?: mixed): void, - - query: - ((query: T, callback?: QueryCallback) => T) & - ((query: QueryConfig|string, callback?: QueryCallback) => Query) & - ((text: string, values: Array, callback?: QueryCallback) => Query), - - on: - ((event: 'drain', listener: () => void) => events$EventEmitter)& - ((event: 'error', listener: (err: PG_ERROR) => void) => events$EventEmitter)& - ((event: 'notification', listener: (message: any) => void) => events$EventEmitter)& - ((event: 'notice', listener: (message: any) => void) => events$EventEmitter)& - ((event: 'end', listener: () => void) => events$EventEmitter), - } - - declare type PoolConnectCallback = (error: PG_ERROR|null, - client: PoolClient|null, done: DoneCallback) => void; - declare type DoneCallback = (error?: mixed) => void; - // https://github.com/facebook/flow/blob/master/lib/node.js#L581 - // on() returns a events$EventEmitter - declare class Pool extends events$EventEmitter { - constructor(options: $Shape, Client?: Class): void; - connect(cb?: PoolConnectCallback): Promise; - take(cb?: PoolConnectCallback): Promise; - end(cb?: DoneCallback): Promise; - - // Note: not like the pg's Client, the Pool.query return a Promise, - // not a Thenable Query which Client returned. - // And there is a flow(<0.34) issue here, when Array, - // the overloading will not work - query: - ((query: QueryConfig|string, callback?: QueryCallback) => Promise) & - ((text: string, values: Array, callback?: QueryCallback) => Promise); - - /* flow issue: https://github.com/facebook/flow/issues/2423 - * When this fixed, this overloading can be used. - */ - /* - on: - ((event: 'connect', listener: (client: PoolClient) => void) => events$EventEmitter )& - ((event: 'acquire', listener: (client: PoolClient) => void) => events$EventEmitter )& - ((event: "error", listener: (err: PG_ERROR) => void) => events$EventEmitter )& - ((event: string, listener: Function) => events$EventEmitter); - */ - } - - // <<------------- copy from 'pg-pool' ------------------------------ - - // error - declare type PG_ERROR = { - name: string, - length: number, - severity: string, - code: string, - detail: string|void, - hint: string|void, - position: string|void, - internalPosition: string|void, - internalQuery: string|void, - where: string|void, - schema: string|void, - table: string|void, - column: string|void, - dataType: string|void, - constraint: string|void, - file: string|void, - line: string|void, - routine: string|void - }; - - declare type ClientConfig = { - // database user's name - user?: string, - // name of database to connect - database?: string, - // database user's password - password?: string, - // database port - port?: number, - // database host. defaults to localhost - host?: string, - // whether to try SSL/TLS to connect to server. default value: false - ssl?: boolean, - // name displayed in the pg_stat_activity view and included in CSV log entries - // default value: process.env.PGAPPNAME - application_name?: string, - // fallback value for the application_name configuration parameter - // default value: false - fallback_application_name?: string, - } - - declare type Row = { - [key: string]: mixed, - }; - declare type ResultSet = { - command: string, - rowCount: number, - oid: number, - rows: Array, - }; - declare type ResultBuilder = { - command: string, - rowCount: number, - oid: number, - rows: Array, - addRow: (row: Row) => void, - }; - declare type QueryConfig = { - name?: string, - text: string, - values?: any[], - }; - declare type QuerySubmittableConfig = QueryConfig & { - submit: (connection: mixed) => void, - }; - - declare type QueryCallback = (err: PG_ERROR|null, result: ResultSet|void) => void; - declare type ClientConnectCallback = (err: PG_ERROR|null, client: Client|void) => void; - - /* - * lib/query.js - * Query extends from EventEmitter in source code. - * but in Flow there is no multiple extends. - * And in Flow await is a `declare function $await(p: Promise | T): T;` - * seems can not resolve a Thenable's value type directly - * so `Query extends Promise` to make thing temporarily work. - * like this: - * const q = client.query('select * from some'); - * q.on('row',cb); // Event - * const result = await q; // or await - * - * ToDo: should find a better way. - */ - declare class Query extends Promise { - then( - onFulfill?: ?((value: ResultSet) => Promise | U), - onReject?: ?((error: PG_ERROR) => Promise | U) - ): Promise; - // Because then and catch return a Promise, - // .then.catch will lose catch's type information PG_ERROR. - catch( - onReject?: ?((error: PG_ERROR) => Promise | U) - ): Promise; - - on : - ((event: 'row', listener: (row: Row, result: ResultBuilder) => void) => events$EventEmitter)& - ((event: 'end', listener: (result: ResultBuilder) => void) => events$EventEmitter)& - ((event: 'error', listener: (err: PG_ERROR) => void) => events$EventEmitter); - } - - /* - * lib/client.js - * Note: not extends from EventEmitter, for This Type returned by on(). - * Flow's EventEmitter force return a EventEmitter in on(). - * ToDo: Not sure in on() if return events$EventEmitter or this will be more suitable - * return this will restrict event to given literial when chain on().on().on(). - * return a events$EventEmitter will fallback to raw EventEmitter, when chains - */ - declare class Client { - constructor(config?: string | ClientConfig): void; - connect(callback?: ClientConnectCallback):void; - end(): void; - - escapeLiteral(str: string): string; - escapeIdentifier(str: string): string; - - query: - ((query: T, callback?: QueryCallback) => T) & - ((query: QueryConfig|string, callback?: QueryCallback) => Query) & - ((text: string, values: Array, callback?: QueryCallback) => Query); - - on: - ((event: 'drain', listener: () => void) => this)& - ((event: 'error', listener: (err: PG_ERROR) => void) => this)& - ((event: 'notification', listener: (message: any) => void) => this)& - ((event: 'notice', listener: (message: any) => void) => this)& - ((event: 'end', listener: () => void) => this); - } - - /* - * require('pg-types') - */ - declare type TypeParserText = (value: string) => any; - declare type TypeParserBinary = (value: Buffer) => any; - declare type Types = { - getTypeParser: - ((oid: number, format?: 'text') => TypeParserText)& - ((oid: number, format: 'binary') => TypeParserBinary); - - setTypeParser: - ((oid: number, format?: 'text', parseFn: TypeParserText) => void)& - ((oid: number, format: 'binary', parseFn: TypeParserBinary) => void)& - ((oid: number, parseFn: TypeParserText) => void), - } - - /* - * lib/index.js ( class PG) - */ - declare class PG extends events$EventEmitter { - types: Types; - Client: Class; - Pool: Class; - Connection: mixed; // Connection is used internally by the Client. - constructor(client: Client): void; - native: { // native binding, have the same capability like PG - types: Types; - Client: Class; - Pool: Class; - Connection: mixed; - }; - // The end(),connect(),cancel() in PG is abandoned ? - } - - // These class are not exposed by pg. - declare type PoolType = Pool; - declare type PGType = PG; - declare type QueryType = Query; - // module export, keep same structure with index.js - declare module.exports: PG; -} diff --git a/flow-typed/npm/primer_vx.x.x.js b/flow-typed/npm/primer_vx.x.x.js deleted file mode 100644 index acbf35b..0000000 --- a/flow-typed/npm/primer_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 0a3f15218c03e4d21b1bef8608378645 -// flow-typed version: <>/primer_v^11.0.0/flow_v0.95.1 - -/** - * This is an autogenerated libdef stub for: - * - * 'primer' - * - * 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 'primer' { - 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 'primer/build/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'primer/build/index.js' { - declare module.exports: $Exports<'primer/build/index'>; -} diff --git a/flow-typed/npm/react-redux_vx.x.x.js b/flow-typed/npm/react-redux_vx.x.x.js deleted file mode 100644 index 53de568..0000000 --- a/flow-typed/npm/react-redux_vx.x.x.js +++ /dev/null @@ -1,375 +0,0 @@ -// flow-typed signature: 7f5e8b57ee4758dcf72c992783b2e2f4 -// flow-typed version: <>/react-redux_v^6.0.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-redux' - * - * 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-redux' { - 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-redux/dist/react-redux' { - declare module.exports: any; -} - -declare module 'react-redux/dist/react-redux.min' { - declare module.exports: any; -} - -declare module 'react-redux/es/components/connectAdvanced' { - declare module.exports: any; -} - -declare module 'react-redux/es/components/Context' { - declare module.exports: any; -} - -declare module 'react-redux/es/components/Provider' { - declare module.exports: any; -} - -declare module 'react-redux/es/connect/connect' { - declare module.exports: any; -} - -declare module 'react-redux/es/connect/mapDispatchToProps' { - declare module.exports: any; -} - -declare module 'react-redux/es/connect/mapStateToProps' { - declare module.exports: any; -} - -declare module 'react-redux/es/connect/mergeProps' { - declare module.exports: any; -} - -declare module 'react-redux/es/connect/selectorFactory' { - declare module.exports: any; -} - -declare module 'react-redux/es/connect/verifySubselectors' { - declare module.exports: any; -} - -declare module 'react-redux/es/connect/wrapMapToProps' { - declare module.exports: any; -} - -declare module 'react-redux/es/index' { - declare module.exports: any; -} - -declare module 'react-redux/es/utils/isPlainObject' { - declare module.exports: any; -} - -declare module 'react-redux/es/utils/shallowEqual' { - declare module.exports: any; -} - -declare module 'react-redux/es/utils/verifyPlainObject' { - declare module.exports: any; -} - -declare module 'react-redux/es/utils/warning' { - declare module.exports: any; -} - -declare module 'react-redux/es/utils/wrapActionCreators' { - declare module.exports: any; -} - -declare module 'react-redux/lib/components/connectAdvanced' { - declare module.exports: any; -} - -declare module 'react-redux/lib/components/Context' { - declare module.exports: any; -} - -declare module 'react-redux/lib/components/Provider' { - declare module.exports: any; -} - -declare module 'react-redux/lib/connect/connect' { - declare module.exports: any; -} - -declare module 'react-redux/lib/connect/mapDispatchToProps' { - declare module.exports: any; -} - -declare module 'react-redux/lib/connect/mapStateToProps' { - declare module.exports: any; -} - -declare module 'react-redux/lib/connect/mergeProps' { - declare module.exports: any; -} - -declare module 'react-redux/lib/connect/selectorFactory' { - declare module.exports: any; -} - -declare module 'react-redux/lib/connect/verifySubselectors' { - declare module.exports: any; -} - -declare module 'react-redux/lib/connect/wrapMapToProps' { - declare module.exports: any; -} - -declare module 'react-redux/lib/index' { - declare module.exports: any; -} - -declare module 'react-redux/lib/utils/isPlainObject' { - declare module.exports: any; -} - -declare module 'react-redux/lib/utils/shallowEqual' { - declare module.exports: any; -} - -declare module 'react-redux/lib/utils/verifyPlainObject' { - declare module.exports: any; -} - -declare module 'react-redux/lib/utils/warning' { - declare module.exports: any; -} - -declare module 'react-redux/lib/utils/wrapActionCreators' { - declare module.exports: any; -} - -declare module 'react-redux/src/components/connectAdvanced' { - declare module.exports: any; -} - -declare module 'react-redux/src/components/Context' { - declare module.exports: any; -} - -declare module 'react-redux/src/components/Provider' { - declare module.exports: any; -} - -declare module 'react-redux/src/connect/connect' { - declare module.exports: any; -} - -declare module 'react-redux/src/connect/mapDispatchToProps' { - declare module.exports: any; -} - -declare module 'react-redux/src/connect/mapStateToProps' { - declare module.exports: any; -} - -declare module 'react-redux/src/connect/mergeProps' { - declare module.exports: any; -} - -declare module 'react-redux/src/connect/selectorFactory' { - declare module.exports: any; -} - -declare module 'react-redux/src/connect/verifySubselectors' { - declare module.exports: any; -} - -declare module 'react-redux/src/connect/wrapMapToProps' { - declare module.exports: any; -} - -declare module 'react-redux/src/index' { - declare module.exports: any; -} - -declare module 'react-redux/src/utils/isPlainObject' { - declare module.exports: any; -} - -declare module 'react-redux/src/utils/shallowEqual' { - declare module.exports: any; -} - -declare module 'react-redux/src/utils/verifyPlainObject' { - declare module.exports: any; -} - -declare module 'react-redux/src/utils/warning' { - declare module.exports: any; -} - -declare module 'react-redux/src/utils/wrapActionCreators' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-redux/dist/react-redux.js' { - declare module.exports: $Exports<'react-redux/dist/react-redux'>; -} -declare module 'react-redux/dist/react-redux.min.js' { - declare module.exports: $Exports<'react-redux/dist/react-redux.min'>; -} -declare module 'react-redux/es/components/connectAdvanced.js' { - declare module.exports: $Exports<'react-redux/es/components/connectAdvanced'>; -} -declare module 'react-redux/es/components/Context.js' { - declare module.exports: $Exports<'react-redux/es/components/Context'>; -} -declare module 'react-redux/es/components/Provider.js' { - declare module.exports: $Exports<'react-redux/es/components/Provider'>; -} -declare module 'react-redux/es/connect/connect.js' { - declare module.exports: $Exports<'react-redux/es/connect/connect'>; -} -declare module 'react-redux/es/connect/mapDispatchToProps.js' { - declare module.exports: $Exports<'react-redux/es/connect/mapDispatchToProps'>; -} -declare module 'react-redux/es/connect/mapStateToProps.js' { - declare module.exports: $Exports<'react-redux/es/connect/mapStateToProps'>; -} -declare module 'react-redux/es/connect/mergeProps.js' { - declare module.exports: $Exports<'react-redux/es/connect/mergeProps'>; -} -declare module 'react-redux/es/connect/selectorFactory.js' { - declare module.exports: $Exports<'react-redux/es/connect/selectorFactory'>; -} -declare module 'react-redux/es/connect/verifySubselectors.js' { - declare module.exports: $Exports<'react-redux/es/connect/verifySubselectors'>; -} -declare module 'react-redux/es/connect/wrapMapToProps.js' { - declare module.exports: $Exports<'react-redux/es/connect/wrapMapToProps'>; -} -declare module 'react-redux/es/index.js' { - declare module.exports: $Exports<'react-redux/es/index'>; -} -declare module 'react-redux/es/utils/isPlainObject.js' { - declare module.exports: $Exports<'react-redux/es/utils/isPlainObject'>; -} -declare module 'react-redux/es/utils/shallowEqual.js' { - declare module.exports: $Exports<'react-redux/es/utils/shallowEqual'>; -} -declare module 'react-redux/es/utils/verifyPlainObject.js' { - declare module.exports: $Exports<'react-redux/es/utils/verifyPlainObject'>; -} -declare module 'react-redux/es/utils/warning.js' { - declare module.exports: $Exports<'react-redux/es/utils/warning'>; -} -declare module 'react-redux/es/utils/wrapActionCreators.js' { - declare module.exports: $Exports<'react-redux/es/utils/wrapActionCreators'>; -} -declare module 'react-redux/lib/components/connectAdvanced.js' { - declare module.exports: $Exports<'react-redux/lib/components/connectAdvanced'>; -} -declare module 'react-redux/lib/components/Context.js' { - declare module.exports: $Exports<'react-redux/lib/components/Context'>; -} -declare module 'react-redux/lib/components/Provider.js' { - declare module.exports: $Exports<'react-redux/lib/components/Provider'>; -} -declare module 'react-redux/lib/connect/connect.js' { - declare module.exports: $Exports<'react-redux/lib/connect/connect'>; -} -declare module 'react-redux/lib/connect/mapDispatchToProps.js' { - declare module.exports: $Exports<'react-redux/lib/connect/mapDispatchToProps'>; -} -declare module 'react-redux/lib/connect/mapStateToProps.js' { - declare module.exports: $Exports<'react-redux/lib/connect/mapStateToProps'>; -} -declare module 'react-redux/lib/connect/mergeProps.js' { - declare module.exports: $Exports<'react-redux/lib/connect/mergeProps'>; -} -declare module 'react-redux/lib/connect/selectorFactory.js' { - declare module.exports: $Exports<'react-redux/lib/connect/selectorFactory'>; -} -declare module 'react-redux/lib/connect/verifySubselectors.js' { - declare module.exports: $Exports<'react-redux/lib/connect/verifySubselectors'>; -} -declare module 'react-redux/lib/connect/wrapMapToProps.js' { - declare module.exports: $Exports<'react-redux/lib/connect/wrapMapToProps'>; -} -declare module 'react-redux/lib/index.js' { - declare module.exports: $Exports<'react-redux/lib/index'>; -} -declare module 'react-redux/lib/utils/isPlainObject.js' { - declare module.exports: $Exports<'react-redux/lib/utils/isPlainObject'>; -} -declare module 'react-redux/lib/utils/shallowEqual.js' { - declare module.exports: $Exports<'react-redux/lib/utils/shallowEqual'>; -} -declare module 'react-redux/lib/utils/verifyPlainObject.js' { - declare module.exports: $Exports<'react-redux/lib/utils/verifyPlainObject'>; -} -declare module 'react-redux/lib/utils/warning.js' { - declare module.exports: $Exports<'react-redux/lib/utils/warning'>; -} -declare module 'react-redux/lib/utils/wrapActionCreators.js' { - declare module.exports: $Exports<'react-redux/lib/utils/wrapActionCreators'>; -} -declare module 'react-redux/src/components/connectAdvanced.js' { - declare module.exports: $Exports<'react-redux/src/components/connectAdvanced'>; -} -declare module 'react-redux/src/components/Context.js' { - declare module.exports: $Exports<'react-redux/src/components/Context'>; -} -declare module 'react-redux/src/components/Provider.js' { - declare module.exports: $Exports<'react-redux/src/components/Provider'>; -} -declare module 'react-redux/src/connect/connect.js' { - declare module.exports: $Exports<'react-redux/src/connect/connect'>; -} -declare module 'react-redux/src/connect/mapDispatchToProps.js' { - declare module.exports: $Exports<'react-redux/src/connect/mapDispatchToProps'>; -} -declare module 'react-redux/src/connect/mapStateToProps.js' { - declare module.exports: $Exports<'react-redux/src/connect/mapStateToProps'>; -} -declare module 'react-redux/src/connect/mergeProps.js' { - declare module.exports: $Exports<'react-redux/src/connect/mergeProps'>; -} -declare module 'react-redux/src/connect/selectorFactory.js' { - declare module.exports: $Exports<'react-redux/src/connect/selectorFactory'>; -} -declare module 'react-redux/src/connect/verifySubselectors.js' { - declare module.exports: $Exports<'react-redux/src/connect/verifySubselectors'>; -} -declare module 'react-redux/src/connect/wrapMapToProps.js' { - declare module.exports: $Exports<'react-redux/src/connect/wrapMapToProps'>; -} -declare module 'react-redux/src/index.js' { - declare module.exports: $Exports<'react-redux/src/index'>; -} -declare module 'react-redux/src/utils/isPlainObject.js' { - declare module.exports: $Exports<'react-redux/src/utils/isPlainObject'>; -} -declare module 'react-redux/src/utils/shallowEqual.js' { - declare module.exports: $Exports<'react-redux/src/utils/shallowEqual'>; -} -declare module 'react-redux/src/utils/verifyPlainObject.js' { - declare module.exports: $Exports<'react-redux/src/utils/verifyPlainObject'>; -} -declare module 'react-redux/src/utils/warning.js' { - declare module.exports: $Exports<'react-redux/src/utils/warning'>; -} -declare module 'react-redux/src/utils/wrapActionCreators.js' { - declare module.exports: $Exports<'react-redux/src/utils/wrapActionCreators'>; -} diff --git a/flow-typed/npm/react-test-renderer_v16.x.x.js b/flow-typed/npm/react-test-renderer_v16.x.x.js deleted file mode 100644 index 3785e44..0000000 --- a/flow-typed/npm/react-test-renderer_v16.x.x.js +++ /dev/null @@ -1,81 +0,0 @@ -// flow-typed signature: b6bb53397d83d2d821e258cc73818d1b -// flow-typed version: 9c71eca8ef/react-test-renderer_v16.x.x/flow_>=v0.47.x - -// Type definitions for react-test-renderer 16.x.x -// Ported from: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react-test-renderer - -type ReactComponentInstance = React$Component; - -type ReactTestRendererJSON = { - type: string, - props: { [propName: string]: any }, - children: null | ReactTestRendererJSON[] -}; - -type ReactTestRendererTree = ReactTestRendererJSON & { - nodeType: "component" | "host", - instance: ?ReactComponentInstance, - rendered: null | ReactTestRendererTree -}; - -type ReactTestInstance = { - instance: ?ReactComponentInstance, - type: string, - props: { [propName: string]: any }, - parent: null | ReactTestInstance, - children: Array, - - find(predicate: (node: ReactTestInstance) => boolean): ReactTestInstance, - findByType(type: React$ElementType): ReactTestInstance, - findByProps(props: { [propName: string]: any }): ReactTestInstance, - - findAll( - predicate: (node: ReactTestInstance) => boolean, - options?: { deep: boolean } - ): ReactTestInstance[], - findAllByType( - type: React$ElementType, - options?: { deep: boolean } - ): ReactTestInstance[], - findAllByProps( - props: { [propName: string]: any }, - options?: { deep: boolean } - ): ReactTestInstance[] -}; - -type TestRendererOptions = { - createNodeMock(element: React$Element): any -}; - -declare module 'react-test-renderer' { - declare export type ReactTestRenderer = { - toJSON(): null | ReactTestRendererJSON, - toTree(): null | ReactTestRendererTree, - unmount(nextElement?: React$Element): void, - update(nextElement: React$Element): void, - getInstance(): ?ReactComponentInstance, - root: ReactTestInstance - }; - - declare type Thenable = { - then(resolve: () => mixed, reject?: () => mixed): mixed, - }; - - declare function create( - nextElement: React$Element, - options?: TestRendererOptions - ): ReactTestRenderer; - - declare function act(callback: () => void): Thenable; -} - -declare module 'react-test-renderer/shallow' { - declare export default class ShallowRenderer { - static createRenderer(): ShallowRenderer; - getMountedInstance(): ReactTestInstance; - getRenderOutput>(): E; - getRenderOutput(): React$Element; - render(element: React$Element, context?: any): void; - unmount(): void; - } -} diff --git a/flow-typed/npm/react-typist_vx.x.x.js b/flow-typed/npm/react-typist_vx.x.x.js deleted file mode 100644 index 8ff4498..0000000 --- a/flow-typed/npm/react-typist_vx.x.x.js +++ /dev/null @@ -1,81 +0,0 @@ -// flow-typed signature: c53c9fc70f7372ce9e832b9ea8a26abc -// flow-typed version: <>/react-typist_v^2.0.5/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-typist' - * - * 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-typist' { - 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-typist/dist/standalone/Typist' { - declare module.exports: any; -} - -declare module 'react-typist/dist/standalone/Typist.min' { - declare module.exports: any; -} - -declare module 'react-typist/dist/Typist' { - declare module.exports: any; -} - -declare module 'react-typist/src/Backspace' { - declare module.exports: any; -} - -declare module 'react-typist/src/Cursor' { - declare module.exports: any; -} - -declare module 'react-typist/src/Delay' { - declare module.exports: any; -} - -declare module 'react-typist/src/Typist' { - declare module.exports: any; -} - -declare module 'react-typist/src/utils' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-typist/dist/standalone/Typist.js' { - declare module.exports: $Exports<'react-typist/dist/standalone/Typist'>; -} -declare module 'react-typist/dist/standalone/Typist.min.js' { - declare module.exports: $Exports<'react-typist/dist/standalone/Typist.min'>; -} -declare module 'react-typist/dist/Typist.js' { - declare module.exports: $Exports<'react-typist/dist/Typist'>; -} -declare module 'react-typist/src/Backspace.jsx' { - declare module.exports: $Exports<'react-typist/src/Backspace'>; -} -declare module 'react-typist/src/Cursor.jsx' { - declare module.exports: $Exports<'react-typist/src/Cursor'>; -} -declare module 'react-typist/src/Delay.jsx' { - declare module.exports: $Exports<'react-typist/src/Delay'>; -} -declare module 'react-typist/src/Typist.jsx' { - declare module.exports: $Exports<'react-typist/src/Typist'>; -} -declare module 'react-typist/src/utils.js' { - declare module.exports: $Exports<'react-typist/src/utils'>; -} diff --git a/flow-typed/npm/redux-devtools-extension_v2.x.x.js b/flow-typed/npm/redux-devtools-extension_v2.x.x.js deleted file mode 100644 index 33f8a30..0000000 --- a/flow-typed/npm/redux-devtools-extension_v2.x.x.js +++ /dev/null @@ -1,127 +0,0 @@ -// flow-typed signature: 263123e4b3d2cb666a60f721c2da5354 -// flow-typed version: e1af06321a/redux-devtools-extension_v2.x.x/flow_>=v0.47.x - -import type { ActionCreator, StoreEnhancer } from 'redux' -import typeof { compose } from 'redux' - -declare type $npm$ReduxDevtoolsExtension$DevToolsOptions = { - name?: string, - actionCreators?: Array> | { [string]: ActionCreator }, - latency?: number, - maxAge?: number, - serialize?: boolean | { - date?: boolean; - regex?: boolean; - undefined?: boolean; - error?: boolean; - symbol?: boolean; - map?: boolean; - set?: boolean; - function?: boolean | Function; - }, - actionSanitizer?: }>(action: A, id: number) => A, - stateSanitizer?: (state: S, index: number) => S, - actionsBlacklist?: string | string[], - actionsWhitelist?: string | string[], - predicate?: }>(state: S, action: A) => boolean, - shouldRecordChanges?: boolean, - pauseActionType?: string, - autoPause?: boolean, - shouldStartLocked?: boolean, - shouldHotReload?: boolean, - shouldCatchErrors?: boolean, - features?: { - pause?: boolean, - lock?: boolean, - persist?: boolean, - export?: boolean | "custom", - import?: boolean | "custom", - jump?: boolean, - skip?: boolean, - reorder?: boolean, - dispatch?: boolean, - test?: boolean - } -}; - -declare function $npm$ReduxDevtoolsExtension$composeWithDevTools(ab: A => B): A => B; -declare function $npm$ReduxDevtoolsExtension$composeWithDevTools(options: $npm$ReduxDevtoolsExtension$DevToolsOptions): compose; -declare function $npm$ReduxDevtoolsExtension$composeWithDevTools( - bc: B => C, - ab: A => B -): A => C; -declare function $npm$ReduxDevtoolsExtension$composeWithDevTools( - cd: C => D, - bc: B => C, - ab: A => B -): A => D; -declare function $npm$ReduxDevtoolsExtension$composeWithDevTools( - de: D => E, - cd: C => D, - bc: B => C, - ab: A => B -): A => E; -declare function $npm$ReduxDevtoolsExtension$composeWithDevTools( - ef: E => F, - de: D => E, - cd: C => D, - bc: B => C, - ab: A => B -): A => F; -declare function $npm$ReduxDevtoolsExtension$composeWithDevTools( - fg: F => G, - ef: E => F, - de: D => E, - cd: C => D, - bc: B => C, - ab: A => B -): A => G; -declare function $npm$ReduxDevtoolsExtension$composeWithDevTools( - gh: G => H, - fg: F => G, - ef: E => F, - de: D => E, - cd: C => D, - bc: B => C, - ab: A => B -): A => H; -declare function $npm$ReduxDevtoolsExtension$composeWithDevTools( - hi: H => I, - gh: G => H, - fg: F => G, - ef: E => F, - de: D => E, - cd: C => D, - bc: B => C, - ab: A => B -): A => H; - -declare function $npm$ReduxDevtoolsExtension$devToolsEnhancer(options?: $npm$ReduxDevtoolsExtension$DevToolsOptions): StoreEnhancer; - -declare module 'redux-devtools-extension' { - declare export type DevToolsOptions = $npm$ReduxDevtoolsExtension$DevToolsOptions; - - declare export var composeWithDevTools: typeof $npm$ReduxDevtoolsExtension$composeWithDevTools; - declare export var devToolsEnhancer: typeof $npm$ReduxDevtoolsExtension$devToolsEnhancer; -} - -declare module 'redux-devtools-extension/developmentOnly' { - declare export type DevToolsOptions = $npm$ReduxDevtoolsExtension$DevToolsOptions; - - declare export var composeWithDevTools: typeof $npm$ReduxDevtoolsExtension$composeWithDevTools; - declare export var devToolsEnhancer: typeof $npm$ReduxDevtoolsExtension$devToolsEnhancer; -} - -declare module 'redux-devtools-extension/logOnly' { - declare export type DevToolsOptions = $npm$ReduxDevtoolsExtension$DevToolsOptions; - - declare export var composeWithDevTools: typeof $npm$ReduxDevtoolsExtension$composeWithDevTools; - declare export var devToolsEnhancer: typeof $npm$ReduxDevtoolsExtension$devToolsEnhancer; -} - -declare module 'redux-devtools-extension/logOnlyInProduction' { - declare export type DevToolsOptions = $npm$ReduxDevtoolsExtension$DevToolsOptions; - - declare export var composeWithDevTools: typeof $npm$ReduxDevtoolsExtension$composeWithDevTools; - declare export var devToolsEnhancer: typeof $npm$ReduxDevtoolsExtension$devToolsEnhancer; -} diff --git a/flow-typed/npm/redux-thunk_vx.x.x.js b/flow-typed/npm/redux-thunk_vx.x.x.js deleted file mode 100644 index 80b568b..0000000 --- a/flow-typed/npm/redux-thunk_vx.x.x.js +++ /dev/null @@ -1,60 +0,0 @@ -// flow-typed signature: 1a122dbad56853cd53bd5e76c532449c -// flow-typed version: <>/redux-thunk_v^2.3.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'redux-thunk' - * - * 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 'redux-thunk' { - 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 'redux-thunk/dist/redux-thunk' { - declare module.exports: any; -} - -declare module 'redux-thunk/dist/redux-thunk.min' { - declare module.exports: any; -} - -declare module 'redux-thunk/es/index' { - declare module.exports: any; -} - -declare module 'redux-thunk/lib/index' { - declare module.exports: any; -} - -declare module 'redux-thunk/src/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'redux-thunk/dist/redux-thunk.js' { - declare module.exports: $Exports<'redux-thunk/dist/redux-thunk'>; -} -declare module 'redux-thunk/dist/redux-thunk.min.js' { - declare module.exports: $Exports<'redux-thunk/dist/redux-thunk.min'>; -} -declare module 'redux-thunk/es/index.js' { - declare module.exports: $Exports<'redux-thunk/es/index'>; -} -declare module 'redux-thunk/lib/index.js' { - declare module.exports: $Exports<'redux-thunk/lib/index'>; -} -declare module 'redux-thunk/src/index.js' { - declare module.exports: $Exports<'redux-thunk/src/index'>; -} diff --git a/flow-typed/npm/redux_v4.x.x.js b/flow-typed/npm/redux_v4.x.x.js deleted file mode 100644 index 861c6c8..0000000 --- a/flow-typed/npm/redux_v4.x.x.js +++ /dev/null @@ -1,96 +0,0 @@ -// flow-typed signature: 55b84d40e54f80cef7b74a34aa052ad5 -// flow-typed version: 2c899a110b/redux_v4.x.x/flow_>=v0.89.x - -declare module 'redux' { - /* - - S = State - A = Action - D = Dispatch - - */ - - declare export type DispatchAPI = (action: A) => A; - - declare export type Dispatch = DispatchAPI; - - declare export type MiddlewareAPI> = { - dispatch: D, - getState(): S, - }; - - declare export type Store> = { - // 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): void, - }; - - declare export type Reducer = (state: S | void, action: A) => S; - - declare export type CombinedReducer = ( - state: ($Shape & {}) | void, - action: A - ) => S; - - declare export type Middleware> = ( - api: MiddlewareAPI - ) => (next: D) => D; - - declare export type StoreCreator> = { - (reducer: Reducer, enhancer?: StoreEnhancer): Store, - ( - reducer: Reducer, - preloadedState: S, - enhancer?: StoreEnhancer - ): Store, - }; - - declare export type StoreEnhancer> = ( - next: StoreCreator - ) => StoreCreator; - - declare export function createStore( - reducer: Reducer, - enhancer?: StoreEnhancer - ): Store; - declare export function createStore( - reducer: Reducer, - preloadedState?: S, - enhancer?: StoreEnhancer - ): Store; - - declare export function applyMiddleware( - ...middlewares: Array> - ): StoreEnhancer; - - declare export type ActionCreator = (...args: Array) => A; - declare export type ActionCreators = { - [key: K]: ActionCreator, - }; - - declare export function bindActionCreators< - A, - C: ActionCreator, - D: DispatchAPI - >( - actionCreator: C, - dispatch: D - ): C; - declare export function bindActionCreators< - A, - K, - C: ActionCreators, - D: DispatchAPI - >( - actionCreators: C, - dispatch: D - ): C; - - declare export function combineReducers( - reducers: O - ): CombinedReducer<$ObjMap(r: Reducer) => S>, A>; - - declare export var compose: $Compose; -} diff --git a/flow-typed/npm/sequelize_vx.x.x.js b/flow-typed/npm/sequelize_vx.x.x.js deleted file mode 100644 index 53fc479..0000000 --- a/flow-typed/npm/sequelize_vx.x.x.js +++ /dev/null @@ -1,675 +0,0 @@ -// flow-typed signature: 58ce1952558f262c71e58bc37d262d63 -// flow-typed version: <>/sequelize_v^5.2.10/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'sequelize' - * - * 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 'sequelize' { - 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 'sequelize/lib/associations/base' { - declare module.exports: any; -} - -declare module 'sequelize/lib/associations/belongs-to-many' { - declare module.exports: any; -} - -declare module 'sequelize/lib/associations/belongs-to' { - declare module.exports: any; -} - -declare module 'sequelize/lib/associations/has-many' { - declare module.exports: any; -} - -declare module 'sequelize/lib/associations/has-one' { - declare module.exports: any; -} - -declare module 'sequelize/lib/associations/helpers' { - declare module.exports: any; -} - -declare module 'sequelize/lib/associations/index' { - declare module.exports: any; -} - -declare module 'sequelize/lib/associations/mixin' { - declare module.exports: any; -} - -declare module 'sequelize/lib/data-types' { - declare module.exports: any; -} - -declare module 'sequelize/lib/deferrable' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/abstract/connection-manager' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/abstract/index' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/abstract/query-generator' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/abstract/query-generator/helpers/quote' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/abstract/query-generator/operators' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/abstract/query-generator/transaction' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/abstract/query' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mariadb/connection-manager' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mariadb/data-types' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mariadb/index' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mariadb/query-generator' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mariadb/query' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mssql/connection-manager' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mssql/data-types' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mssql/index' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mssql/query-generator' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mssql/query-interface' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mssql/query' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mssql/resource-lock' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mysql/connection-manager' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mysql/data-types' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mysql/index' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mysql/query-generator' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mysql/query-interface' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/mysql/query' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/parserStore' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/postgres/connection-manager' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/postgres/data-types' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/postgres/hstore' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/postgres/index' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/postgres/query-generator' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/postgres/query-interface' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/postgres/query' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/postgres/range' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/sqlite/connection-manager' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/sqlite/data-types' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/sqlite/index' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/sqlite/query-generator' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/sqlite/query-interface' { - declare module.exports: any; -} - -declare module 'sequelize/lib/dialects/sqlite/query' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/association-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/base-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/bulk-record-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/connection-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/connection/access-denied-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/connection/connection-acquire-timeout-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/connection/connection-refused-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/connection/connection-timed-out-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/connection/host-not-found-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/connection/host-not-reachable-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/connection/invalid-connection-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/database-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/database/exclusion-constraint-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/database/foreign-key-constraint-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/database/timeout-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/database/unknown-constraint-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/eager-loading-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/empty-result-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/index' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/instance-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/optimistic-lock-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/query-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/sequelize-scope-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/validation-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/errors/validation/unique-constraint-error' { - declare module.exports: any; -} - -declare module 'sequelize/lib/hooks' { - declare module.exports: any; -} - -declare module 'sequelize/lib/instance-validator' { - declare module.exports: any; -} - -declare module 'sequelize/lib/model-manager' { - declare module.exports: any; -} - -declare module 'sequelize/lib/model' { - declare module.exports: any; -} - -declare module 'sequelize/lib/operators' { - declare module.exports: any; -} - -declare module 'sequelize/lib/promise' { - declare module.exports: any; -} - -declare module 'sequelize/lib/query-interface' { - declare module.exports: any; -} - -declare module 'sequelize/lib/query-types' { - declare module.exports: any; -} - -declare module 'sequelize/lib/sequelize' { - declare module.exports: any; -} - -declare module 'sequelize/lib/sql-string' { - declare module.exports: any; -} - -declare module 'sequelize/lib/table-hints' { - declare module.exports: any; -} - -declare module 'sequelize/lib/transaction' { - declare module.exports: any; -} - -declare module 'sequelize/lib/utils' { - declare module.exports: any; -} - -declare module 'sequelize/lib/utils/classToInvokable' { - declare module.exports: any; -} - -declare module 'sequelize/lib/utils/deprecations' { - declare module.exports: any; -} - -declare module 'sequelize/lib/utils/logger' { - declare module.exports: any; -} - -declare module 'sequelize/lib/utils/validator-extras' { - declare module.exports: any; -} - -// Filename aliases -declare module 'sequelize/index' { - declare module.exports: $Exports<'sequelize'>; -} -declare module 'sequelize/index.js' { - declare module.exports: $Exports<'sequelize'>; -} -declare module 'sequelize/lib/associations/base.js' { - declare module.exports: $Exports<'sequelize/lib/associations/base'>; -} -declare module 'sequelize/lib/associations/belongs-to-many.js' { - declare module.exports: $Exports<'sequelize/lib/associations/belongs-to-many'>; -} -declare module 'sequelize/lib/associations/belongs-to.js' { - declare module.exports: $Exports<'sequelize/lib/associations/belongs-to'>; -} -declare module 'sequelize/lib/associations/has-many.js' { - declare module.exports: $Exports<'sequelize/lib/associations/has-many'>; -} -declare module 'sequelize/lib/associations/has-one.js' { - declare module.exports: $Exports<'sequelize/lib/associations/has-one'>; -} -declare module 'sequelize/lib/associations/helpers.js' { - declare module.exports: $Exports<'sequelize/lib/associations/helpers'>; -} -declare module 'sequelize/lib/associations/index.js' { - declare module.exports: $Exports<'sequelize/lib/associations/index'>; -} -declare module 'sequelize/lib/associations/mixin.js' { - declare module.exports: $Exports<'sequelize/lib/associations/mixin'>; -} -declare module 'sequelize/lib/data-types.js' { - declare module.exports: $Exports<'sequelize/lib/data-types'>; -} -declare module 'sequelize/lib/deferrable.js' { - declare module.exports: $Exports<'sequelize/lib/deferrable'>; -} -declare module 'sequelize/lib/dialects/abstract/connection-manager.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/abstract/connection-manager'>; -} -declare module 'sequelize/lib/dialects/abstract/index.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/abstract/index'>; -} -declare module 'sequelize/lib/dialects/abstract/query-generator.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/abstract/query-generator'>; -} -declare module 'sequelize/lib/dialects/abstract/query-generator/helpers/quote.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/abstract/query-generator/helpers/quote'>; -} -declare module 'sequelize/lib/dialects/abstract/query-generator/operators.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/abstract/query-generator/operators'>; -} -declare module 'sequelize/lib/dialects/abstract/query-generator/transaction.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/abstract/query-generator/transaction'>; -} -declare module 'sequelize/lib/dialects/abstract/query.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/abstract/query'>; -} -declare module 'sequelize/lib/dialects/mariadb/connection-manager.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mariadb/connection-manager'>; -} -declare module 'sequelize/lib/dialects/mariadb/data-types.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mariadb/data-types'>; -} -declare module 'sequelize/lib/dialects/mariadb/index.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mariadb/index'>; -} -declare module 'sequelize/lib/dialects/mariadb/query-generator.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mariadb/query-generator'>; -} -declare module 'sequelize/lib/dialects/mariadb/query.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mariadb/query'>; -} -declare module 'sequelize/lib/dialects/mssql/connection-manager.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mssql/connection-manager'>; -} -declare module 'sequelize/lib/dialects/mssql/data-types.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mssql/data-types'>; -} -declare module 'sequelize/lib/dialects/mssql/index.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mssql/index'>; -} -declare module 'sequelize/lib/dialects/mssql/query-generator.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mssql/query-generator'>; -} -declare module 'sequelize/lib/dialects/mssql/query-interface.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mssql/query-interface'>; -} -declare module 'sequelize/lib/dialects/mssql/query.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mssql/query'>; -} -declare module 'sequelize/lib/dialects/mssql/resource-lock.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mssql/resource-lock'>; -} -declare module 'sequelize/lib/dialects/mysql/connection-manager.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mysql/connection-manager'>; -} -declare module 'sequelize/lib/dialects/mysql/data-types.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mysql/data-types'>; -} -declare module 'sequelize/lib/dialects/mysql/index.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mysql/index'>; -} -declare module 'sequelize/lib/dialects/mysql/query-generator.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mysql/query-generator'>; -} -declare module 'sequelize/lib/dialects/mysql/query-interface.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mysql/query-interface'>; -} -declare module 'sequelize/lib/dialects/mysql/query.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/mysql/query'>; -} -declare module 'sequelize/lib/dialects/parserStore.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/parserStore'>; -} -declare module 'sequelize/lib/dialects/postgres/connection-manager.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/postgres/connection-manager'>; -} -declare module 'sequelize/lib/dialects/postgres/data-types.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/postgres/data-types'>; -} -declare module 'sequelize/lib/dialects/postgres/hstore.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/postgres/hstore'>; -} -declare module 'sequelize/lib/dialects/postgres/index.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/postgres/index'>; -} -declare module 'sequelize/lib/dialects/postgres/query-generator.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/postgres/query-generator'>; -} -declare module 'sequelize/lib/dialects/postgres/query-interface.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/postgres/query-interface'>; -} -declare module 'sequelize/lib/dialects/postgres/query.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/postgres/query'>; -} -declare module 'sequelize/lib/dialects/postgres/range.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/postgres/range'>; -} -declare module 'sequelize/lib/dialects/sqlite/connection-manager.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/sqlite/connection-manager'>; -} -declare module 'sequelize/lib/dialects/sqlite/data-types.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/sqlite/data-types'>; -} -declare module 'sequelize/lib/dialects/sqlite/index.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/sqlite/index'>; -} -declare module 'sequelize/lib/dialects/sqlite/query-generator.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/sqlite/query-generator'>; -} -declare module 'sequelize/lib/dialects/sqlite/query-interface.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/sqlite/query-interface'>; -} -declare module 'sequelize/lib/dialects/sqlite/query.js' { - declare module.exports: $Exports<'sequelize/lib/dialects/sqlite/query'>; -} -declare module 'sequelize/lib/errors/association-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/association-error'>; -} -declare module 'sequelize/lib/errors/base-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/base-error'>; -} -declare module 'sequelize/lib/errors/bulk-record-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/bulk-record-error'>; -} -declare module 'sequelize/lib/errors/connection-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/connection-error'>; -} -declare module 'sequelize/lib/errors/connection/access-denied-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/connection/access-denied-error'>; -} -declare module 'sequelize/lib/errors/connection/connection-acquire-timeout-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/connection/connection-acquire-timeout-error'>; -} -declare module 'sequelize/lib/errors/connection/connection-refused-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/connection/connection-refused-error'>; -} -declare module 'sequelize/lib/errors/connection/connection-timed-out-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/connection/connection-timed-out-error'>; -} -declare module 'sequelize/lib/errors/connection/host-not-found-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/connection/host-not-found-error'>; -} -declare module 'sequelize/lib/errors/connection/host-not-reachable-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/connection/host-not-reachable-error'>; -} -declare module 'sequelize/lib/errors/connection/invalid-connection-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/connection/invalid-connection-error'>; -} -declare module 'sequelize/lib/errors/database-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/database-error'>; -} -declare module 'sequelize/lib/errors/database/exclusion-constraint-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/database/exclusion-constraint-error'>; -} -declare module 'sequelize/lib/errors/database/foreign-key-constraint-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/database/foreign-key-constraint-error'>; -} -declare module 'sequelize/lib/errors/database/timeout-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/database/timeout-error'>; -} -declare module 'sequelize/lib/errors/database/unknown-constraint-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/database/unknown-constraint-error'>; -} -declare module 'sequelize/lib/errors/eager-loading-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/eager-loading-error'>; -} -declare module 'sequelize/lib/errors/empty-result-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/empty-result-error'>; -} -declare module 'sequelize/lib/errors/index.js' { - declare module.exports: $Exports<'sequelize/lib/errors/index'>; -} -declare module 'sequelize/lib/errors/instance-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/instance-error'>; -} -declare module 'sequelize/lib/errors/optimistic-lock-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/optimistic-lock-error'>; -} -declare module 'sequelize/lib/errors/query-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/query-error'>; -} -declare module 'sequelize/lib/errors/sequelize-scope-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/sequelize-scope-error'>; -} -declare module 'sequelize/lib/errors/validation-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/validation-error'>; -} -declare module 'sequelize/lib/errors/validation/unique-constraint-error.js' { - declare module.exports: $Exports<'sequelize/lib/errors/validation/unique-constraint-error'>; -} -declare module 'sequelize/lib/hooks.js' { - declare module.exports: $Exports<'sequelize/lib/hooks'>; -} -declare module 'sequelize/lib/instance-validator.js' { - declare module.exports: $Exports<'sequelize/lib/instance-validator'>; -} -declare module 'sequelize/lib/model-manager.js' { - declare module.exports: $Exports<'sequelize/lib/model-manager'>; -} -declare module 'sequelize/lib/model.js' { - declare module.exports: $Exports<'sequelize/lib/model'>; -} -declare module 'sequelize/lib/operators.js' { - declare module.exports: $Exports<'sequelize/lib/operators'>; -} -declare module 'sequelize/lib/promise.js' { - declare module.exports: $Exports<'sequelize/lib/promise'>; -} -declare module 'sequelize/lib/query-interface.js' { - declare module.exports: $Exports<'sequelize/lib/query-interface'>; -} -declare module 'sequelize/lib/query-types.js' { - declare module.exports: $Exports<'sequelize/lib/query-types'>; -} -declare module 'sequelize/lib/sequelize.js' { - declare module.exports: $Exports<'sequelize/lib/sequelize'>; -} -declare module 'sequelize/lib/sql-string.js' { - declare module.exports: $Exports<'sequelize/lib/sql-string'>; -} -declare module 'sequelize/lib/table-hints.js' { - declare module.exports: $Exports<'sequelize/lib/table-hints'>; -} -declare module 'sequelize/lib/transaction.js' { - declare module.exports: $Exports<'sequelize/lib/transaction'>; -} -declare module 'sequelize/lib/utils.js' { - declare module.exports: $Exports<'sequelize/lib/utils'>; -} -declare module 'sequelize/lib/utils/classToInvokable.js' { - declare module.exports: $Exports<'sequelize/lib/utils/classToInvokable'>; -} -declare module 'sequelize/lib/utils/deprecations.js' { - declare module.exports: $Exports<'sequelize/lib/utils/deprecations'>; -} -declare module 'sequelize/lib/utils/logger.js' { - declare module.exports: $Exports<'sequelize/lib/utils/logger'>; -} -declare module 'sequelize/lib/utils/validator-extras.js' { - declare module.exports: $Exports<'sequelize/lib/utils/validator-extras'>; -} diff --git a/flow-typed/npm/socket.io_vx.x.x.js b/flow-typed/npm/socket.io_vx.x.x.js deleted file mode 100644 index fa0182b..0000000 --- a/flow-typed/npm/socket.io_vx.x.x.js +++ /dev/null @@ -1,60 +0,0 @@ -// flow-typed signature: fd0cb8e7f16c16d187bf212a8b0358e6 -// flow-typed version: <>/socket.io_v^2.2.0/flow_v0.95.1 - -/** - * This is an autogenerated libdef stub for: - * - * 'socket.io' - * - * 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 'socket.io' { - 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 'socket.io/lib/client' { - declare module.exports: any; -} - -declare module 'socket.io/lib/index' { - declare module.exports: any; -} - -declare module 'socket.io/lib/namespace' { - declare module.exports: any; -} - -declare module 'socket.io/lib/parent-namespace' { - declare module.exports: any; -} - -declare module 'socket.io/lib/socket' { - declare module.exports: any; -} - -// Filename aliases -declare module 'socket.io/lib/client.js' { - declare module.exports: $Exports<'socket.io/lib/client'>; -} -declare module 'socket.io/lib/index.js' { - declare module.exports: $Exports<'socket.io/lib/index'>; -} -declare module 'socket.io/lib/namespace.js' { - declare module.exports: $Exports<'socket.io/lib/namespace'>; -} -declare module 'socket.io/lib/parent-namespace.js' { - declare module.exports: $Exports<'socket.io/lib/parent-namespace'>; -} -declare module 'socket.io/lib/socket.js' { - declare module.exports: $Exports<'socket.io/lib/socket'>; -} diff --git a/flow-typed/npm/standard_vx.x.x.js b/flow-typed/npm/standard_vx.x.x.js deleted file mode 100644 index ac96193..0000000 --- a/flow-typed/npm/standard_vx.x.x.js +++ /dev/null @@ -1,45 +0,0 @@ -// flow-typed signature: 76c84602b15b454720a69bba83c126e2 -// flow-typed version: <>/standard_v12.0.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'standard' - * - * 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 'standard' { - 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 'standard/bin/cmd' { - declare module.exports: any; -} - -declare module 'standard/options' { - declare module.exports: any; -} - -// Filename aliases -declare module 'standard/bin/cmd.js' { - declare module.exports: $Exports<'standard/bin/cmd'>; -} -declare module 'standard/index' { - declare module.exports: $Exports<'standard'>; -} -declare module 'standard/index.js' { - declare module.exports: $Exports<'standard'>; -} -declare module 'standard/options.js' { - declare module.exports: $Exports<'standard/options'>; -} diff --git a/flow-typed/npm/styled-components_v4.x.x.js b/flow-typed/npm/styled-components_v4.x.x.js deleted file mode 100644 index 0d842d3..0000000 --- a/flow-typed/npm/styled-components_v4.x.x.js +++ /dev/null @@ -1,402 +0,0 @@ -// flow-typed signature: 8ae4cfa383fc58443d8d65b5301bf1c1 -// flow-typed version: 1a7d5ca288/styled-components_v4.x.x/flow_>=v0.75.x - -// @flow - -declare module 'styled-components' { - declare export type Interpolation = - | ((executionContext: P) => string) - | CSSRules - | KeyFrames - | string - | number - - declare export type CSSRules = Interpolation[] - - // This is not exported on purpose, since it's an implementation detail - declare type TaggedTemplateLiteral = (strings : string[], ...interpolations : Interpolation[]) => R - - declare export type CSSConstructor = TaggedTemplateLiteral - declare export type KeyFramesConstructor = TaggedTemplateLiteral - declare export type CreateGlobalStyleConstructor = TaggedTemplateLiteral> - - declare interface Tag { - styleTag: HTMLStyleElement | null; - getIds(): string[]; - hasNameForId(id: string, name: string): boolean; - insertMarker(id: string): T; - insertRules(id: string, cssRules: string[], name: ?string): void; - removeRules(id: string): void; - css(): string; - toHTML(additionalAttrs: ?string): string; - toElement(): React$Element<*>; - clone(): Tag; - sealed: boolean; - } - - // The `any`/weak types in here all come from `styled-components` directly, since those definitions were just copied over - declare export class StyleSheet { - static get master() : StyleSheet; - static get instance() : StyleSheet; - static reset(forceServer? : boolean) : void; - - id : number; - forceServer : boolean; - target : ?HTMLElement; - tagMap : {[string]: Tag}; // eslint-disable-line flowtype/no-weak-types - deferred: { [string]: string[] | void }; - rehydratedNames: { [string]: boolean }; - ignoreRehydratedNames: { [string]: boolean }; - tags: Tag[]; // eslint-disable-line flowtype/no-weak-types - importRuleTag: Tag; // eslint-disable-line flowtype/no-weak-types - capacity: number; - clones: StyleSheet[]; - - constructor(?HTMLElement) : this; - rehydrate() : this; - clone() : StyleSheet; - sealAllTags() : void; - makeTag(tag : ?Tag) : Tag; // eslint-disable-line flowtype/no-weak-types - getImportRuleTag() : Tag; // eslint-disable-line flowtype/no-weak-types - getTagForId(id : string): Tag; // eslint-disable-line flowtype/no-weak-types - hasId(id: string) : boolean; - hasNameForId(id: string, name: string) : boolean; - deferredInject(id : string, cssRules : string[]) : void; - inject(id: string, cssRules : string[], name? : string) : void; - remove(id : string) : void; - toHtml() : string; - toReactElements() : React$ElementType[]; - } - - declare export class KeyFrames { - id : string; - name : string; - rules : string[]; - - constructor(name : string, rules : string[]) : this; - inject(StyleSheet) : void; - toString() : string; - getName() : string; - } - - // I think any is appropriate here? - // eslint-disable-next-line flowtype/no-weak-types - declare export type Theme = {+[string] : any} - - declare export var css : CSSConstructor; - declare export var keyframes : KeyFramesConstructor; - declare export var createGlobalStyle : CreateGlobalStyleConstructor - declare export var ThemeProvider : React$ComponentType<{children?: ?React$Node, theme : Theme | (Theme) => Theme}> - - // This is a bit hard to read. Not sure how to make it more readable. I think adding line-breaks makes it worse. - declare type InjectedProps = { theme : Theme | void } - declare export function withTheme>(WrappedComponent: Component) : React$ComponentType<$Diff>, InjectedProps>>; - - // @HACK This is a cheat to hide that the underlying type is "just a string" - // once we know of a better way, we should be able to update this accordingly. - // I don't think there _is_ a good way, currently. - // @NOTE Also not too sure about the naming of this... - declare export type StyledElementType = T; - declare export type StyledComponentType = { - [[call]]: TaggedTemplateLiteral, - +attrs: (attributes: A | (props: React$ElementConfig) => A) => TaggedTemplateLiteral, A>>> - }; - - declare type StyledComponentList = { - a: StyledComponentType>, - abbr: StyledComponentType>, - address: StyledComponentType>, - area: StyledComponentType>, - article: StyledComponentType>, - aside: StyledComponentType>, - audio: StyledComponentType>, - b: StyledComponentType>, - base: StyledComponentType>, - bdi: StyledComponentType>, - bdo: StyledComponentType>, - big: StyledComponentType>, - blockquote: StyledComponentType>, - body: StyledComponentType>, - br: StyledComponentType>, - button: StyledComponentType>, - canvas: StyledComponentType>, - caption: StyledComponentType>, - cite: StyledComponentType>, - code: StyledComponentType>, - col: StyledComponentType>, - colgroup: StyledComponentType>, - data: StyledComponentType>, - datalist: StyledComponentType>, - dd: StyledComponentType>, - del: StyledComponentType>, - details: StyledComponentType>, - dfn: StyledComponentType>, - dialog: StyledComponentType>, - div: StyledComponentType>, - dl: StyledComponentType>, - dt: StyledComponentType>, - em: StyledComponentType>, - embed: StyledComponentType>, - fieldset: StyledComponentType>, - figcaption: StyledComponentType>, - figure: StyledComponentType>, - footer: StyledComponentType>, - form: StyledComponentType>, - h1: StyledComponentType>, - h2: StyledComponentType>, - h3: StyledComponentType>, - h4: StyledComponentType>, - h5: StyledComponentType>, - h6: StyledComponentType>, - head: StyledComponentType>, - header: StyledComponentType>, - hgroup: StyledComponentType>, - hr: StyledComponentType>, - html: StyledComponentType>, - i: StyledComponentType>, - iframe: StyledComponentType>, - img: StyledComponentType>, - input: StyledComponentType>, - ins: StyledComponentType>, - kbd: StyledComponentType>, - keygen: StyledComponentType>, - label: StyledComponentType>, - legend: StyledComponentType>, - li: StyledComponentType>, - link: StyledComponentType>, - main: StyledComponentType>, - map: StyledComponentType>, - mark: StyledComponentType>, - menu: StyledComponentType>, - menuitem: StyledComponentType>, - meta: StyledComponentType>, - meter: StyledComponentType>, - nav: StyledComponentType>, - noscript: StyledComponentType>, - object: StyledComponentType>, - ol: StyledComponentType>, - optgroup: StyledComponentType>, - option: StyledComponentType>, - output: StyledComponentType>, - p: StyledComponentType>, - param: StyledComponentType>, - picture: StyledComponentType>, - pre: StyledComponentType>, - progress: StyledComponentType>, - q: StyledComponentType>, - rp: StyledComponentType>, - rt: StyledComponentType>, - ruby: StyledComponentType>, - s: StyledComponentType>, - samp: StyledComponentType>, - script: StyledComponentType>, - section: StyledComponentType>, - select: StyledComponentType>, - small: StyledComponentType>, - source: StyledComponentType>, - span: StyledComponentType>, - strong: StyledComponentType>, - style: StyledComponentType>, - sub: StyledComponentType>, - summary: StyledComponentType>, - sup: StyledComponentType>, - table: StyledComponentType>, - tbody: StyledComponentType>, - td: StyledComponentType>, - textarea: StyledComponentType>, - tfoot: StyledComponentType>, - th: StyledComponentType>, - thead: StyledComponentType>, - time: StyledComponentType>, - title: StyledComponentType>, - tr: StyledComponentType>, - track: StyledComponentType>, - u: StyledComponentType>, - ul: StyledComponentType>, - var: StyledComponentType>, - video: StyledComponentType>, - wbr: StyledComponentType>, - - // SVG - circle: StyledComponentType>, - clipPath: StyledComponentType>, - defs: StyledComponentType>, - ellipse: StyledComponentType>, - g: StyledComponentType>, - image: StyledComponentType>, - line: StyledComponentType>, - linearGradient: StyledComponentType>, - mask: StyledComponentType>, - path: StyledComponentType>, - pattern: StyledComponentType>, - polygon: StyledComponentType>, - polyline: StyledComponentType>, - radialGradient: StyledComponentType>, - rect: StyledComponentType>, - stop: StyledComponentType>, - svg: StyledComponentType>, - text: StyledComponentType>, - tspan: StyledComponentType> - } - - declare export default StyledComponentList & { - [[call]]: (S) => $ElementType, - [[call]]:

>(C) => StyledComponentType - }; -} - -declare module 'styled-components/native' { - declare export type Interpolation = - | ((executionContext: P) => string) - | CSSRules - | KeyFrames - | string - | number - - declare export type CSSRules = Interpolation[] - - // This is not exported on purpose, since it's an implementation detail - declare type TaggedTemplateLiteral = (strings : string[], ...interpolations : Interpolation[]) => R - - declare export type CSSConstructor = TaggedTemplateLiteral - declare export type KeyFramesConstructor = TaggedTemplateLiteral - declare export type CreateGlobalStyleConstructor = TaggedTemplateLiteral> - - declare interface Tag { - styleTag: HTMLStyleElement | null; - getIds(): string[]; - hasNameForId(id: string, name: string): boolean; - insertMarker(id: string): T; - insertRules(id: string, cssRules: string[], name: ?string): void; - removeRules(id: string): void; - css(): string; - toHTML(additionalAttrs: ?string): string; - toElement(): React$Element<*>; - clone(): Tag; - sealed: boolean; - } - - // The `any`/weak types in here all come from `styled-components` directly, since those definitions were just copied over - declare export class StyleSheet { - static get master() : StyleSheet; - static get instance() : StyleSheet; - static reset(forceServer? : boolean) : void; - - id : number; - forceServer : boolean; - target : ?HTMLElement; - tagMap : {[string]: Tag}; // eslint-disable-line flowtype/no-weak-types - deferred: { [string]: string[] | void }; - rehydratedNames: { [string]: boolean }; - ignoreRehydratedNames: { [string]: boolean }; - tags: Tag[]; // eslint-disable-line flowtype/no-weak-types - importRuleTag: Tag; // eslint-disable-line flowtype/no-weak-types - capacity: number; - clones: StyleSheet[]; - - constructor(?HTMLElement) : this; - rehydrate() : this; - clone() : StyleSheet; - sealAllTags() : void; - makeTag(tag : ?Tag) : Tag; // eslint-disable-line flowtype/no-weak-types - getImportRuleTag() : Tag; // eslint-disable-line flowtype/no-weak-types - getTagForId(id : string): Tag; // eslint-disable-line flowtype/no-weak-types - hasId(id: string) : boolean; - hasNameForId(id: string, name: string) : boolean; - deferredInject(id : string, cssRules : string[]) : void; - inject(id: string, cssRules : string[], name? : string) : void; - remove(id : string) : void; - toHtml() : string; - toReactElements() : React$ElementType[]; - } - - declare export class KeyFrames { - id : string; - name : string; - rules : string[]; - - constructor(name : string, rules : string[]) : this; - inject(StyleSheet) : void; - toString() : string; - getName() : string; - } - - // I think any is appropriate here? - // eslint-disable-next-line flowtype/no-weak-types - declare export type Theme = {+[string] : any} - - declare export var css : CSSConstructor; - declare export var keyframes : KeyFramesConstructor; - declare export var createGlobalStyle : CreateGlobalStyleConstructor - declare export var ThemeProvider : React$ComponentType<{children?: ?React$Node, theme : Theme | (Theme) => Theme}> - - // This is a bit hard to read. Not sure how to make it more readable. I think adding line-breaks makes it worse. - declare type InjectedProps = { theme : Theme | void } - declare export function withTheme>(WrappedComponent: Component) : React$ComponentType<$Diff>, InjectedProps>>; - - // @HACK This is a cheat to hide that the underlying type is "just a string" - // once we know of a better way, we should be able to update this accordingly. - // I don't think there _is_ a good way, currently. - // @NOTE Also not too sure about the naming of this... - declare export type StyledElementType = T; - declare export type StyledComponentType = { - [[call]]: TaggedTemplateLiteral, - +attrs: (attributes: A) => TaggedTemplateLiteral, A>>> - }; - - declare type StyledComponentList = { - ActivityIndicator: StyledComponentType>, - ActivityIndicatorIOS: StyledComponentType>, - ART: StyledComponentType>, - Button: StyledComponentType>, - DatePickerIOS: StyledComponentType>, - DrawerLayoutAndroid: StyledComponentType>, - Image: StyledComponentType>, - ImageBackground: StyledComponentType>, - ImageEditor: StyledComponentType>, - ImageStore: StyledComponentType>, - KeyboardAvoidingView: StyledComponentType>, - ListView: StyledComponentType>, - MapView: StyledComponentType>, - Modal: StyledComponentType>, - NavigatorIOS: StyledComponentType>, - Picker: StyledComponentType>, - PickerIOS: StyledComponentType>, - ProgressBarAndroid: StyledComponentType>, - ProgressViewIOS: StyledComponentType>, - ScrollView: StyledComponentType>, - SegmentedControlIOS: StyledComponentType>, - Slider: StyledComponentType>, - SliderIOS: StyledComponentType>, - SnapshotViewIOS: StyledComponentType>, - Switch: StyledComponentType>, - RecyclerViewBackedScrollView: StyledComponentType>, - RefreshControl: StyledComponentType>, - SafeAreaView: StyledComponentType>, - StatusBar: StyledComponentType>, - SwipeableListView: StyledComponentType>, - SwitchAndroid: StyledComponentType>, - SwitchIOS: StyledComponentType>, - TabBarIOS: StyledComponentType>, - Text: StyledComponentType>, - TextInput: StyledComponentType>, - ToastAndroid: StyledComponentType>, - ToolbarAndroid: StyledComponentType>, - Touchable: StyledComponentType>, - TouchableHighlight: StyledComponentType>, - TouchableNativeFeedback: StyledComponentType>, - TouchableOpacity: StyledComponentType>, - TouchableWithoutFeedback: StyledComponentType>, - View: StyledComponentType>, - ViewPagerAndroid: StyledComponentType>, - WebView: StyledComponentType>, - FlatList: StyledComponentType>, - SectionList: StyledComponentType>, - VirtualizedList: StyledComponentType>, - } - - declare export default StyledComponentList & { - [[call]]: (S) => $ElementType, - [[call]]:

>(C) => StyledComponentType - }; -} diff --git a/flow-typed/npm/stylelint-config-standard_vx.x.x.js b/flow-typed/npm/stylelint-config-standard_vx.x.x.js deleted file mode 100644 index 4a29fe6..0000000 --- a/flow-typed/npm/stylelint-config-standard_vx.x.x.js +++ /dev/null @@ -1,33 +0,0 @@ -// flow-typed signature: ecd8e3a73e933c364b5d7e3ddafc72f2 -// flow-typed version: <>/stylelint-config-standard_v^18.2.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'stylelint-config-standard' - * - * 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 'stylelint-config-standard' { - 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 'stylelint-config-standard/index' { - declare module.exports: $Exports<'stylelint-config-standard'>; -} -declare module 'stylelint-config-standard/index.js' { - declare module.exports: $Exports<'stylelint-config-standard'>; -} diff --git a/flow-typed/npm/stylelint-config-styled-components_vx.x.x.js b/flow-typed/npm/stylelint-config-styled-components_vx.x.x.js deleted file mode 100644 index cc4e899..0000000 --- a/flow-typed/npm/stylelint-config-styled-components_vx.x.x.js +++ /dev/null @@ -1,33 +0,0 @@ -// flow-typed signature: 12d5c366ed1a01ef891ead808989f7d8 -// flow-typed version: <>/stylelint-config-styled-components_v^0.1.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'stylelint-config-styled-components' - * - * 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 'stylelint-config-styled-components' { - 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 'stylelint-config-styled-components/index' { - declare module.exports: $Exports<'stylelint-config-styled-components'>; -} -declare module 'stylelint-config-styled-components/index.js' { - declare module.exports: $Exports<'stylelint-config-styled-components'>; -} diff --git a/flow-typed/npm/stylelint-processor-styled-components_vx.x.x.js b/flow-typed/npm/stylelint-processor-styled-components_vx.x.x.js deleted file mode 100644 index e4897f2..0000000 --- a/flow-typed/npm/stylelint-processor-styled-components_vx.x.x.js +++ /dev/null @@ -1,480 +0,0 @@ -// flow-typed signature: 32fd23102fa81c7e729c9b7ed645b2bb -// flow-typed version: <>/stylelint-processor-styled-components_v^1.6.0/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'stylelint-processor-styled-components' - * - * 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 'stylelint-processor-styled-components' { - 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 'stylelint-processor-styled-components/lib/index' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/lib/parsers/babylon-parser' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/lib/parsers/index' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/lib/utils/general' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/lib/utils/parse' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/lib/utils/result' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/lib/utils/styled' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/lib/utils/tagged-template-literal' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/src/index' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/src/parsers/babylon-parser' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/src/parsers/index' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/src/utils/general' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/src/utils/parse' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/src/utils/result' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/src/utils/styled' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/src/utils/tagged-template-literal' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/emptyblock.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/emptycode.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/garbage-css/invalid-css' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/hard/indentation' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/hard/invalid-indentation' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/hard/source-maps' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/hard/valid-js-comments' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/alternating-disable-enable' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/disable-whole-file' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/mix-in-css-disables' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/use-single-line-comments' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/use-single-line-disables' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/inject-global/valid-spaces' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/inject-global/valid-tabs' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/interpolation-tagging/invalid-custom' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/interpolation-tagging/invalid-tag' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/interpolation-tagging/valid' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/interpolations/complex' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/interpolations/invalid' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/interpolations/valid' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/options/import-name' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/options/invalid-import-name' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/options/invalid-module-name' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/options/module-name' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/options/relative-module-name' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/options/strict' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/real-world/Circle' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/real-world/LineNumbersReportedAccurate' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/simple/global' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/simple/helpers' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/simple/identify-styled' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/simple/imports' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/simple/invalid' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/simple/nesting' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/simple/other-library' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/fixtures/simple/valid' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/garbage-css.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/hard.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/ignore-rule-comments.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/inject-global.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/interpolation-tagging.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/interpolations.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/jest-setup' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/nofiles.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/options.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/real-world.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/simple.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/typescript.test' { - declare module.exports: any; -} - -declare module 'stylelint-processor-styled-components/test/utils.test' { - declare module.exports: any; -} - -// Filename aliases -declare module 'stylelint-processor-styled-components/lib/index.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/lib/index'>; -} -declare module 'stylelint-processor-styled-components/lib/parsers/babylon-parser.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/lib/parsers/babylon-parser'>; -} -declare module 'stylelint-processor-styled-components/lib/parsers/index.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/lib/parsers/index'>; -} -declare module 'stylelint-processor-styled-components/lib/utils/general.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/lib/utils/general'>; -} -declare module 'stylelint-processor-styled-components/lib/utils/parse.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/lib/utils/parse'>; -} -declare module 'stylelint-processor-styled-components/lib/utils/result.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/lib/utils/result'>; -} -declare module 'stylelint-processor-styled-components/lib/utils/styled.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/lib/utils/styled'>; -} -declare module 'stylelint-processor-styled-components/lib/utils/tagged-template-literal.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/lib/utils/tagged-template-literal'>; -} -declare module 'stylelint-processor-styled-components/src/index.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/src/index'>; -} -declare module 'stylelint-processor-styled-components/src/parsers/babylon-parser.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/src/parsers/babylon-parser'>; -} -declare module 'stylelint-processor-styled-components/src/parsers/index.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/src/parsers/index'>; -} -declare module 'stylelint-processor-styled-components/src/utils/general.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/src/utils/general'>; -} -declare module 'stylelint-processor-styled-components/src/utils/parse.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/src/utils/parse'>; -} -declare module 'stylelint-processor-styled-components/src/utils/result.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/src/utils/result'>; -} -declare module 'stylelint-processor-styled-components/src/utils/styled.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/src/utils/styled'>; -} -declare module 'stylelint-processor-styled-components/src/utils/tagged-template-literal.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/src/utils/tagged-template-literal'>; -} -declare module 'stylelint-processor-styled-components/test/emptyblock.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/emptyblock.test'>; -} -declare module 'stylelint-processor-styled-components/test/emptycode.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/emptycode.test'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/garbage-css/invalid-css.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/garbage-css/invalid-css'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/hard/indentation.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/hard/indentation'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/hard/invalid-indentation.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/hard/invalid-indentation'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/hard/source-maps.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/hard/source-maps'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/hard/valid-js-comments.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/hard/valid-js-comments'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/alternating-disable-enable.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/alternating-disable-enable'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/disable-whole-file.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/disable-whole-file'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/mix-in-css-disables.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/mix-in-css-disables'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/use-single-line-comments.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/use-single-line-comments'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/use-single-line-disables.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/ignore-rule-comments/use-single-line-disables'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/inject-global/valid-spaces.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/inject-global/valid-spaces'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/inject-global/valid-tabs.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/inject-global/valid-tabs'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/interpolation-tagging/invalid-custom.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/interpolation-tagging/invalid-custom'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/interpolation-tagging/invalid-tag.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/interpolation-tagging/invalid-tag'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/interpolation-tagging/valid.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/interpolation-tagging/valid'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/interpolations/complex.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/interpolations/complex'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/interpolations/invalid.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/interpolations/invalid'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/interpolations/valid.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/interpolations/valid'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/options/import-name.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/options/import-name'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/options/invalid-import-name.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/options/invalid-import-name'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/options/invalid-module-name.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/options/invalid-module-name'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/options/module-name.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/options/module-name'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/options/relative-module-name.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/options/relative-module-name'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/options/strict.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/options/strict'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/real-world/Circle.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/real-world/Circle'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/real-world/LineNumbersReportedAccurate.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/real-world/LineNumbersReportedAccurate'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/simple/global.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/simple/global'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/simple/helpers.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/simple/helpers'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/simple/identify-styled.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/simple/identify-styled'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/simple/imports.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/simple/imports'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/simple/invalid.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/simple/invalid'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/simple/nesting.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/simple/nesting'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/simple/other-library.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/simple/other-library'>; -} -declare module 'stylelint-processor-styled-components/test/fixtures/simple/valid.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/fixtures/simple/valid'>; -} -declare module 'stylelint-processor-styled-components/test/garbage-css.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/garbage-css.test'>; -} -declare module 'stylelint-processor-styled-components/test/hard.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/hard.test'>; -} -declare module 'stylelint-processor-styled-components/test/ignore-rule-comments.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/ignore-rule-comments.test'>; -} -declare module 'stylelint-processor-styled-components/test/inject-global.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/inject-global.test'>; -} -declare module 'stylelint-processor-styled-components/test/interpolation-tagging.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/interpolation-tagging.test'>; -} -declare module 'stylelint-processor-styled-components/test/interpolations.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/interpolations.test'>; -} -declare module 'stylelint-processor-styled-components/test/jest-setup.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/jest-setup'>; -} -declare module 'stylelint-processor-styled-components/test/nofiles.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/nofiles.test'>; -} -declare module 'stylelint-processor-styled-components/test/options.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/options.test'>; -} -declare module 'stylelint-processor-styled-components/test/real-world.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/real-world.test'>; -} -declare module 'stylelint-processor-styled-components/test/simple.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/simple.test'>; -} -declare module 'stylelint-processor-styled-components/test/typescript.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/typescript.test'>; -} -declare module 'stylelint-processor-styled-components/test/utils.test.js' { - declare module.exports: $Exports<'stylelint-processor-styled-components/test/utils.test'>; -} diff --git a/flow-typed/npm/stylelint_vx.x.x.js b/flow-typed/npm/stylelint_vx.x.x.js deleted file mode 100644 index 5710ed6..0000000 --- a/flow-typed/npm/stylelint_vx.x.x.js +++ /dev/null @@ -1,2244 +0,0 @@ -// flow-typed signature: ca493817c78918df93fa14498da586b5 -// flow-typed version: <>/stylelint_v^9.10.1/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'stylelint' - * - * 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 'stylelint' { - 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 'stylelint/bin/stylelint' { - declare module.exports: any; -} - -declare module 'stylelint/flow-typed/postcss' { - declare module.exports: any; -} - -declare module 'stylelint/flow-typed/stylelint' { - declare module.exports: any; -} - -declare module 'stylelint/lib/assignDisabledRanges' { - declare module.exports: any; -} - -declare module 'stylelint/lib/augmentConfig' { - declare module.exports: any; -} - -declare module 'stylelint/lib/cli' { - declare module.exports: any; -} - -declare module 'stylelint/lib/createPlugin' { - declare module.exports: any; -} - -declare module 'stylelint/lib/createStylelint' { - declare module.exports: any; -} - -declare module 'stylelint/lib/createStylelintResult' { - declare module.exports: any; -} - -declare module 'stylelint/lib/dynamicRequire' { - declare module.exports: any; -} - -declare module 'stylelint/lib/formatters/compactFormatter' { - declare module.exports: any; -} - -declare module 'stylelint/lib/formatters/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/formatters/jsonFormatter' { - declare module.exports: any; -} - -declare module 'stylelint/lib/formatters/needlessDisablesStringFormatter' { - declare module.exports: any; -} - -declare module 'stylelint/lib/formatters/stringFormatter' { - declare module.exports: any; -} - -declare module 'stylelint/lib/formatters/unixFormatter' { - declare module.exports: any; -} - -declare module 'stylelint/lib/formatters/verboseFormatter' { - declare module.exports: any; -} - -declare module 'stylelint/lib/getConfigForFile' { - declare module.exports: any; -} - -declare module 'stylelint/lib/getPostcssResult' { - declare module.exports: any; -} - -declare module 'stylelint/lib/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/isPathIgnored' { - declare module.exports: any; -} - -declare module 'stylelint/lib/lintSource' { - declare module.exports: any; -} - -declare module 'stylelint/lib/needlessDisables' { - declare module.exports: any; -} - -declare module 'stylelint/lib/normalizeRuleSettings' { - declare module.exports: any; -} - -declare module 'stylelint/lib/postcssPlugin' { - declare module.exports: any; -} - -declare module 'stylelint/lib/printConfig' { - declare module.exports: any; -} - -declare module 'stylelint/lib/reference/keywordSets' { - declare module.exports: any; -} - -declare module 'stylelint/lib/reference/namedColorData' { - declare module.exports: any; -} - -declare module 'stylelint/lib/reference/propertySets' { - declare module.exports: any; -} - -declare module 'stylelint/lib/reference/punctuationSets' { - declare module.exports: any; -} - -declare module 'stylelint/lib/reference/shorthandData' { - declare module.exports: any; -} - -declare module 'stylelint/lib/requireRule' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/at-rule-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/at-rule-empty-line-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/at-rule-name-case/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/at-rule-name-newline-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/at-rule-name-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/at-rule-no-unknown/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/at-rule-no-vendor-prefix/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/at-rule-semicolon-newline-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/at-rule-semicolon-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/at-rule-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/atRuleNameSpaceChecker' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/block-closing-brace-empty-line-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/block-closing-brace-newline-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/block-closing-brace-newline-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/block-closing-brace-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/block-closing-brace-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/block-no-empty/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/block-opening-brace-newline-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/block-opening-brace-newline-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/block-opening-brace-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/block-opening-brace-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/color-hex-case/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/color-hex-length/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/color-named/generateColorFuncs' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/color-named/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/color-no-hex/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/color-no-invalid-hex/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/comment-empty-line-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/comment-no-empty/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/comment-whitespace-inside/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/comment-word-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/custom-media-pattern/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/custom-property-empty-line-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/custom-property-pattern/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-bang-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-bang-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-block-no-duplicate-properties/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-block-no-redundant-longhand-properties/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-block-no-shorthand-property-overrides/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-block-semicolon-newline-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-block-semicolon-newline-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-block-semicolon-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-block-semicolon-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-block-single-line-max-declarations/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-block-trailing-semicolon/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-colon-newline-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-colon-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-colon-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-empty-line-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-no-important/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-property-unit-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-property-unit-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-property-value-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declaration-property-value-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declarationBangSpaceChecker' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/declarationColonSpaceChecker' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/findMediaOperator' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/font-family-name-quotes/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/font-family-no-duplicate-names/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/font-family-no-missing-generic-family-keyword/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/font-weight-notation/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-calc-no-invalid/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-calc-no-unspaced-operator/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-comma-newline-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-comma-newline-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-comma-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-comma-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-linear-gradient-no-nonstandard-direction/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-max-empty-lines/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-name-case/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-parentheses-newline-inside/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-parentheses-space-inside/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-url-no-scheme-relative/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-url-quotes/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-url-scheme-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-url-scheme-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/function-whitespace-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/functionCommaSpaceChecker' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/functionCommaSpaceFix' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/indentation/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/keyframe-declaration-no-important/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/keyframes-name-pattern/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/length-zero-no-unit/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/linebreaks/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/max-empty-lines/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/max-line-length/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/max-nesting-depth/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-feature-colon-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-feature-colon-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-feature-name-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-feature-name-case/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-feature-name-no-unknown/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-feature-name-no-vendor-prefix/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-feature-name-value-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-feature-name-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-feature-parentheses-space-inside/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-feature-range-operator-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-feature-range-operator-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-query-list-comma-newline-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-query-list-comma-newline-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-query-list-comma-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/media-query-list-comma-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/mediaFeatureColonSpaceChecker' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/mediaQueryListCommaWhitespaceChecker' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/no-descending-specificity/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/no-duplicate-at-import-rules/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/no-duplicate-selectors/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/no-empty-first-line/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/no-empty-source/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/no-eol-whitespace/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/no-extra-semicolons/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/no-invalid-double-slash-comments/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/no-missing-end-of-source-newline/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/no-unknown-animations/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/number-leading-zero/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/number-max-precision/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/number-no-trailing-zeros/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/property-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/property-case/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/property-no-unknown/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/property-no-vendor-prefix/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/property-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/rule-empty-line-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-attribute-brackets-space-inside/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-attribute-operator-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-attribute-operator-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-attribute-operator-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-attribute-operator-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-attribute-quotes/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-class-pattern/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-combinator-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-combinator-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-combinator-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-combinator-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-descendant-combinator-no-non-space/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-id-pattern/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-list-comma-newline-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-list-comma-newline-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-list-comma-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-list-comma-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-max-attribute/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-max-class/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-max-combinators/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-max-compound-selectors/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-max-empty-lines/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-max-id/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-max-pseudo-class/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-max-specificity/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-max-type/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-max-universal/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-nested-pattern/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-no-qualifying-type/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-no-vendor-prefix/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-pseudo-class-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-pseudo-class-case/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-pseudo-class-no-unknown/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-pseudo-class-parentheses-space-inside/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-pseudo-class-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-pseudo-element-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-pseudo-element-case/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-pseudo-element-colon-notation/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-pseudo-element-no-unknown/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-pseudo-element-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-type-case/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selector-type-no-unknown/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selectorAttributeOperatorSpaceChecker' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selectorCombinatorSpaceChecker' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/selectorListCommaWhitespaceChecker' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/shorthand-property-no-redundant-values/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/string-no-newline/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/string-quotes/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/time-min-milliseconds/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/unit-blacklist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/unit-case/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/unit-no-unknown/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/unit-whitelist/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/value-keyword-case/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/value-list-comma-newline-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/value-list-comma-newline-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/value-list-comma-space-after/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/value-list-comma-space-before/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/value-list-max-empty-lines/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/value-no-vendor-prefix/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/rules/valueListCommaWhitespaceChecker' { - declare module.exports: any; -} - -declare module 'stylelint/lib/standalone' { - declare module.exports: any; -} - -declare module 'stylelint/lib/testUtils/basicChecks' { - declare module.exports: any; -} - -declare module 'stylelint/lib/testUtils/createRuleTester' { - declare module.exports: any; -} - -declare module 'stylelint/lib/testUtils/mergeTestDescriptions' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/addEmptyLineAfter' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/addEmptyLineBefore' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/atRuleParamIndex' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/beforeBlockString' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/blockString' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/blurComments' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/blurFunctionArguments' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/blurInterpolation' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/checkAgainstRule' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/checkInvalidCLIOptions' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/configurationError' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/containsString' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/declarationValueIndex' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/eachDeclarationBlock' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/FileCache' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/filterFilePaths' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/findAnimationName' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/findAtRuleContext' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/findFontFamily' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/findListStyleType' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/functionArgumentsSearch' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/getCacheFile' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/getFormatterOptionsText' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/getModulePath' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/getNextNonSharedLineCommentNode' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/getOsEol' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/getPreviousNonSharedLineCommentNode' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/getSchemeFromUrl' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/getUnitFromValueNode' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/hasBlock' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/hasEmptyBlock' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/hasEmptyLine' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/hash' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/hasInterpolation' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/hasLessInterpolation' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/hasPsvInterpolation' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/hasScssInterpolation' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/hasTplInterpolation' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isAfterComment' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isAfterSingleLineComment' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isAfterStandardPropertyDeclaration' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isAutoprefixable' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isBlocklessAtRuleAfterBlocklessAtRule' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isBlocklessAtRuleAfterSameNameBlocklessAtRule' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isCounterIncrementCustomIdentValue' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isCounterResetCustomIdentValue' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isCustomElement' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isCustomMediaQuery' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isCustomProperty' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isCustomPropertySet' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isCustomSelector' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isFirstNested' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isFirstNodeOfRoot' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isKeyframeRule' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isKeyframeSelector' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isNumbery' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isOnlyWhitespace' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isRangeContextMediaFeature' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isSharedLineComment' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isSingleLineString' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxAtRule' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxCombinator' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxDeclaration' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxFunction' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxMediaFeature' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxMediaFeatureName' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxProperty' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxRule' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxSelector' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxTypeSelector' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxUrl' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isStandardSyntaxValue' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isValidFontSize' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isValidHex' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isVariable' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/isWhitespace' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/matchesStringOrRegExp' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/nextNonCommentNode' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/nodeContextLookup' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/optionsMatches' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/parseCalcExpression/index' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/parseCalcExpression/parser' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/parseSelector' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/rawNodeString' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/removeEmptyLinesAfter' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/removeEmptyLinesBefore' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/report' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/ruleMessages' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/validateObjectWithArrayProps' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/validateObjectWithStringArrayProps' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/validateObjectWithStringOrRegexArrayProps' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/validateOptions' { - declare module.exports: any; -} - -declare module 'stylelint/lib/utils/whitespaceChecker' { - declare module.exports: any; -} - -declare module 'stylelint/lib/vendor/writeFileAtomic' { - declare module.exports: any; -} - -// Filename aliases -declare module 'stylelint/bin/stylelint.js' { - declare module.exports: $Exports<'stylelint/bin/stylelint'>; -} -declare module 'stylelint/flow-typed/postcss.js' { - declare module.exports: $Exports<'stylelint/flow-typed/postcss'>; -} -declare module 'stylelint/flow-typed/stylelint.js' { - declare module.exports: $Exports<'stylelint/flow-typed/stylelint'>; -} -declare module 'stylelint/lib/assignDisabledRanges.js' { - declare module.exports: $Exports<'stylelint/lib/assignDisabledRanges'>; -} -declare module 'stylelint/lib/augmentConfig.js' { - declare module.exports: $Exports<'stylelint/lib/augmentConfig'>; -} -declare module 'stylelint/lib/cli.js' { - declare module.exports: $Exports<'stylelint/lib/cli'>; -} -declare module 'stylelint/lib/createPlugin.js' { - declare module.exports: $Exports<'stylelint/lib/createPlugin'>; -} -declare module 'stylelint/lib/createStylelint.js' { - declare module.exports: $Exports<'stylelint/lib/createStylelint'>; -} -declare module 'stylelint/lib/createStylelintResult.js' { - declare module.exports: $Exports<'stylelint/lib/createStylelintResult'>; -} -declare module 'stylelint/lib/dynamicRequire.js' { - declare module.exports: $Exports<'stylelint/lib/dynamicRequire'>; -} -declare module 'stylelint/lib/formatters/compactFormatter.js' { - declare module.exports: $Exports<'stylelint/lib/formatters/compactFormatter'>; -} -declare module 'stylelint/lib/formatters/index.js' { - declare module.exports: $Exports<'stylelint/lib/formatters/index'>; -} -declare module 'stylelint/lib/formatters/jsonFormatter.js' { - declare module.exports: $Exports<'stylelint/lib/formatters/jsonFormatter'>; -} -declare module 'stylelint/lib/formatters/needlessDisablesStringFormatter.js' { - declare module.exports: $Exports<'stylelint/lib/formatters/needlessDisablesStringFormatter'>; -} -declare module 'stylelint/lib/formatters/stringFormatter.js' { - declare module.exports: $Exports<'stylelint/lib/formatters/stringFormatter'>; -} -declare module 'stylelint/lib/formatters/unixFormatter.js' { - declare module.exports: $Exports<'stylelint/lib/formatters/unixFormatter'>; -} -declare module 'stylelint/lib/formatters/verboseFormatter.js' { - declare module.exports: $Exports<'stylelint/lib/formatters/verboseFormatter'>; -} -declare module 'stylelint/lib/getConfigForFile.js' { - declare module.exports: $Exports<'stylelint/lib/getConfigForFile'>; -} -declare module 'stylelint/lib/getPostcssResult.js' { - declare module.exports: $Exports<'stylelint/lib/getPostcssResult'>; -} -declare module 'stylelint/lib/index.js' { - declare module.exports: $Exports<'stylelint/lib/index'>; -} -declare module 'stylelint/lib/isPathIgnored.js' { - declare module.exports: $Exports<'stylelint/lib/isPathIgnored'>; -} -declare module 'stylelint/lib/lintSource.js' { - declare module.exports: $Exports<'stylelint/lib/lintSource'>; -} -declare module 'stylelint/lib/needlessDisables.js' { - declare module.exports: $Exports<'stylelint/lib/needlessDisables'>; -} -declare module 'stylelint/lib/normalizeRuleSettings.js' { - declare module.exports: $Exports<'stylelint/lib/normalizeRuleSettings'>; -} -declare module 'stylelint/lib/postcssPlugin.js' { - declare module.exports: $Exports<'stylelint/lib/postcssPlugin'>; -} -declare module 'stylelint/lib/printConfig.js' { - declare module.exports: $Exports<'stylelint/lib/printConfig'>; -} -declare module 'stylelint/lib/reference/keywordSets.js' { - declare module.exports: $Exports<'stylelint/lib/reference/keywordSets'>; -} -declare module 'stylelint/lib/reference/namedColorData.js' { - declare module.exports: $Exports<'stylelint/lib/reference/namedColorData'>; -} -declare module 'stylelint/lib/reference/propertySets.js' { - declare module.exports: $Exports<'stylelint/lib/reference/propertySets'>; -} -declare module 'stylelint/lib/reference/punctuationSets.js' { - declare module.exports: $Exports<'stylelint/lib/reference/punctuationSets'>; -} -declare module 'stylelint/lib/reference/shorthandData.js' { - declare module.exports: $Exports<'stylelint/lib/reference/shorthandData'>; -} -declare module 'stylelint/lib/requireRule.js' { - declare module.exports: $Exports<'stylelint/lib/requireRule'>; -} -declare module 'stylelint/lib/rules/at-rule-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/at-rule-blacklist/index'>; -} -declare module 'stylelint/lib/rules/at-rule-empty-line-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/at-rule-empty-line-before/index'>; -} -declare module 'stylelint/lib/rules/at-rule-name-case/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/at-rule-name-case/index'>; -} -declare module 'stylelint/lib/rules/at-rule-name-newline-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/at-rule-name-newline-after/index'>; -} -declare module 'stylelint/lib/rules/at-rule-name-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/at-rule-name-space-after/index'>; -} -declare module 'stylelint/lib/rules/at-rule-no-unknown/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/at-rule-no-unknown/index'>; -} -declare module 'stylelint/lib/rules/at-rule-no-vendor-prefix/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/at-rule-no-vendor-prefix/index'>; -} -declare module 'stylelint/lib/rules/at-rule-semicolon-newline-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/at-rule-semicolon-newline-after/index'>; -} -declare module 'stylelint/lib/rules/at-rule-semicolon-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/at-rule-semicolon-space-before/index'>; -} -declare module 'stylelint/lib/rules/at-rule-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/at-rule-whitelist/index'>; -} -declare module 'stylelint/lib/rules/atRuleNameSpaceChecker.js' { - declare module.exports: $Exports<'stylelint/lib/rules/atRuleNameSpaceChecker'>; -} -declare module 'stylelint/lib/rules/block-closing-brace-empty-line-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/block-closing-brace-empty-line-before/index'>; -} -declare module 'stylelint/lib/rules/block-closing-brace-newline-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/block-closing-brace-newline-after/index'>; -} -declare module 'stylelint/lib/rules/block-closing-brace-newline-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/block-closing-brace-newline-before/index'>; -} -declare module 'stylelint/lib/rules/block-closing-brace-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/block-closing-brace-space-after/index'>; -} -declare module 'stylelint/lib/rules/block-closing-brace-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/block-closing-brace-space-before/index'>; -} -declare module 'stylelint/lib/rules/block-no-empty/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/block-no-empty/index'>; -} -declare module 'stylelint/lib/rules/block-opening-brace-newline-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/block-opening-brace-newline-after/index'>; -} -declare module 'stylelint/lib/rules/block-opening-brace-newline-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/block-opening-brace-newline-before/index'>; -} -declare module 'stylelint/lib/rules/block-opening-brace-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/block-opening-brace-space-after/index'>; -} -declare module 'stylelint/lib/rules/block-opening-brace-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/block-opening-brace-space-before/index'>; -} -declare module 'stylelint/lib/rules/color-hex-case/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/color-hex-case/index'>; -} -declare module 'stylelint/lib/rules/color-hex-length/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/color-hex-length/index'>; -} -declare module 'stylelint/lib/rules/color-named/generateColorFuncs.js' { - declare module.exports: $Exports<'stylelint/lib/rules/color-named/generateColorFuncs'>; -} -declare module 'stylelint/lib/rules/color-named/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/color-named/index'>; -} -declare module 'stylelint/lib/rules/color-no-hex/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/color-no-hex/index'>; -} -declare module 'stylelint/lib/rules/color-no-invalid-hex/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/color-no-invalid-hex/index'>; -} -declare module 'stylelint/lib/rules/comment-empty-line-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/comment-empty-line-before/index'>; -} -declare module 'stylelint/lib/rules/comment-no-empty/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/comment-no-empty/index'>; -} -declare module 'stylelint/lib/rules/comment-whitespace-inside/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/comment-whitespace-inside/index'>; -} -declare module 'stylelint/lib/rules/comment-word-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/comment-word-blacklist/index'>; -} -declare module 'stylelint/lib/rules/custom-media-pattern/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/custom-media-pattern/index'>; -} -declare module 'stylelint/lib/rules/custom-property-empty-line-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/custom-property-empty-line-before/index'>; -} -declare module 'stylelint/lib/rules/custom-property-pattern/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/custom-property-pattern/index'>; -} -declare module 'stylelint/lib/rules/declaration-bang-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-bang-space-after/index'>; -} -declare module 'stylelint/lib/rules/declaration-bang-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-bang-space-before/index'>; -} -declare module 'stylelint/lib/rules/declaration-block-no-duplicate-properties/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-block-no-duplicate-properties/index'>; -} -declare module 'stylelint/lib/rules/declaration-block-no-redundant-longhand-properties/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-block-no-redundant-longhand-properties/index'>; -} -declare module 'stylelint/lib/rules/declaration-block-no-shorthand-property-overrides/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-block-no-shorthand-property-overrides/index'>; -} -declare module 'stylelint/lib/rules/declaration-block-semicolon-newline-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-block-semicolon-newline-after/index'>; -} -declare module 'stylelint/lib/rules/declaration-block-semicolon-newline-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-block-semicolon-newline-before/index'>; -} -declare module 'stylelint/lib/rules/declaration-block-semicolon-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-block-semicolon-space-after/index'>; -} -declare module 'stylelint/lib/rules/declaration-block-semicolon-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-block-semicolon-space-before/index'>; -} -declare module 'stylelint/lib/rules/declaration-block-single-line-max-declarations/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-block-single-line-max-declarations/index'>; -} -declare module 'stylelint/lib/rules/declaration-block-trailing-semicolon/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-block-trailing-semicolon/index'>; -} -declare module 'stylelint/lib/rules/declaration-colon-newline-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-colon-newline-after/index'>; -} -declare module 'stylelint/lib/rules/declaration-colon-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-colon-space-after/index'>; -} -declare module 'stylelint/lib/rules/declaration-colon-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-colon-space-before/index'>; -} -declare module 'stylelint/lib/rules/declaration-empty-line-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-empty-line-before/index'>; -} -declare module 'stylelint/lib/rules/declaration-no-important/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-no-important/index'>; -} -declare module 'stylelint/lib/rules/declaration-property-unit-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-property-unit-blacklist/index'>; -} -declare module 'stylelint/lib/rules/declaration-property-unit-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-property-unit-whitelist/index'>; -} -declare module 'stylelint/lib/rules/declaration-property-value-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-property-value-blacklist/index'>; -} -declare module 'stylelint/lib/rules/declaration-property-value-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declaration-property-value-whitelist/index'>; -} -declare module 'stylelint/lib/rules/declarationBangSpaceChecker.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declarationBangSpaceChecker'>; -} -declare module 'stylelint/lib/rules/declarationColonSpaceChecker.js' { - declare module.exports: $Exports<'stylelint/lib/rules/declarationColonSpaceChecker'>; -} -declare module 'stylelint/lib/rules/findMediaOperator.js' { - declare module.exports: $Exports<'stylelint/lib/rules/findMediaOperator'>; -} -declare module 'stylelint/lib/rules/font-family-name-quotes/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/font-family-name-quotes/index'>; -} -declare module 'stylelint/lib/rules/font-family-no-duplicate-names/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/font-family-no-duplicate-names/index'>; -} -declare module 'stylelint/lib/rules/font-family-no-missing-generic-family-keyword/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/font-family-no-missing-generic-family-keyword/index'>; -} -declare module 'stylelint/lib/rules/font-weight-notation/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/font-weight-notation/index'>; -} -declare module 'stylelint/lib/rules/function-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-blacklist/index'>; -} -declare module 'stylelint/lib/rules/function-calc-no-invalid/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-calc-no-invalid/index'>; -} -declare module 'stylelint/lib/rules/function-calc-no-unspaced-operator/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-calc-no-unspaced-operator/index'>; -} -declare module 'stylelint/lib/rules/function-comma-newline-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-comma-newline-after/index'>; -} -declare module 'stylelint/lib/rules/function-comma-newline-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-comma-newline-before/index'>; -} -declare module 'stylelint/lib/rules/function-comma-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-comma-space-after/index'>; -} -declare module 'stylelint/lib/rules/function-comma-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-comma-space-before/index'>; -} -declare module 'stylelint/lib/rules/function-linear-gradient-no-nonstandard-direction/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-linear-gradient-no-nonstandard-direction/index'>; -} -declare module 'stylelint/lib/rules/function-max-empty-lines/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-max-empty-lines/index'>; -} -declare module 'stylelint/lib/rules/function-name-case/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-name-case/index'>; -} -declare module 'stylelint/lib/rules/function-parentheses-newline-inside/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-parentheses-newline-inside/index'>; -} -declare module 'stylelint/lib/rules/function-parentheses-space-inside/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-parentheses-space-inside/index'>; -} -declare module 'stylelint/lib/rules/function-url-no-scheme-relative/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-url-no-scheme-relative/index'>; -} -declare module 'stylelint/lib/rules/function-url-quotes/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-url-quotes/index'>; -} -declare module 'stylelint/lib/rules/function-url-scheme-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-url-scheme-blacklist/index'>; -} -declare module 'stylelint/lib/rules/function-url-scheme-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-url-scheme-whitelist/index'>; -} -declare module 'stylelint/lib/rules/function-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-whitelist/index'>; -} -declare module 'stylelint/lib/rules/function-whitespace-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/function-whitespace-after/index'>; -} -declare module 'stylelint/lib/rules/functionCommaSpaceChecker.js' { - declare module.exports: $Exports<'stylelint/lib/rules/functionCommaSpaceChecker'>; -} -declare module 'stylelint/lib/rules/functionCommaSpaceFix.js' { - declare module.exports: $Exports<'stylelint/lib/rules/functionCommaSpaceFix'>; -} -declare module 'stylelint/lib/rules/indentation/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/indentation/index'>; -} -declare module 'stylelint/lib/rules/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/index'>; -} -declare module 'stylelint/lib/rules/keyframe-declaration-no-important/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/keyframe-declaration-no-important/index'>; -} -declare module 'stylelint/lib/rules/keyframes-name-pattern/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/keyframes-name-pattern/index'>; -} -declare module 'stylelint/lib/rules/length-zero-no-unit/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/length-zero-no-unit/index'>; -} -declare module 'stylelint/lib/rules/linebreaks/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/linebreaks/index'>; -} -declare module 'stylelint/lib/rules/max-empty-lines/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/max-empty-lines/index'>; -} -declare module 'stylelint/lib/rules/max-line-length/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/max-line-length/index'>; -} -declare module 'stylelint/lib/rules/max-nesting-depth/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/max-nesting-depth/index'>; -} -declare module 'stylelint/lib/rules/media-feature-colon-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-feature-colon-space-after/index'>; -} -declare module 'stylelint/lib/rules/media-feature-colon-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-feature-colon-space-before/index'>; -} -declare module 'stylelint/lib/rules/media-feature-name-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-feature-name-blacklist/index'>; -} -declare module 'stylelint/lib/rules/media-feature-name-case/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-feature-name-case/index'>; -} -declare module 'stylelint/lib/rules/media-feature-name-no-unknown/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-feature-name-no-unknown/index'>; -} -declare module 'stylelint/lib/rules/media-feature-name-no-vendor-prefix/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-feature-name-no-vendor-prefix/index'>; -} -declare module 'stylelint/lib/rules/media-feature-name-value-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-feature-name-value-whitelist/index'>; -} -declare module 'stylelint/lib/rules/media-feature-name-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-feature-name-whitelist/index'>; -} -declare module 'stylelint/lib/rules/media-feature-parentheses-space-inside/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-feature-parentheses-space-inside/index'>; -} -declare module 'stylelint/lib/rules/media-feature-range-operator-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-feature-range-operator-space-after/index'>; -} -declare module 'stylelint/lib/rules/media-feature-range-operator-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-feature-range-operator-space-before/index'>; -} -declare module 'stylelint/lib/rules/media-query-list-comma-newline-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-query-list-comma-newline-after/index'>; -} -declare module 'stylelint/lib/rules/media-query-list-comma-newline-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-query-list-comma-newline-before/index'>; -} -declare module 'stylelint/lib/rules/media-query-list-comma-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-query-list-comma-space-after/index'>; -} -declare module 'stylelint/lib/rules/media-query-list-comma-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/media-query-list-comma-space-before/index'>; -} -declare module 'stylelint/lib/rules/mediaFeatureColonSpaceChecker.js' { - declare module.exports: $Exports<'stylelint/lib/rules/mediaFeatureColonSpaceChecker'>; -} -declare module 'stylelint/lib/rules/mediaQueryListCommaWhitespaceChecker.js' { - declare module.exports: $Exports<'stylelint/lib/rules/mediaQueryListCommaWhitespaceChecker'>; -} -declare module 'stylelint/lib/rules/no-descending-specificity/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/no-descending-specificity/index'>; -} -declare module 'stylelint/lib/rules/no-duplicate-at-import-rules/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/no-duplicate-at-import-rules/index'>; -} -declare module 'stylelint/lib/rules/no-duplicate-selectors/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/no-duplicate-selectors/index'>; -} -declare module 'stylelint/lib/rules/no-empty-first-line/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/no-empty-first-line/index'>; -} -declare module 'stylelint/lib/rules/no-empty-source/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/no-empty-source/index'>; -} -declare module 'stylelint/lib/rules/no-eol-whitespace/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/no-eol-whitespace/index'>; -} -declare module 'stylelint/lib/rules/no-extra-semicolons/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/no-extra-semicolons/index'>; -} -declare module 'stylelint/lib/rules/no-invalid-double-slash-comments/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/no-invalid-double-slash-comments/index'>; -} -declare module 'stylelint/lib/rules/no-missing-end-of-source-newline/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/no-missing-end-of-source-newline/index'>; -} -declare module 'stylelint/lib/rules/no-unknown-animations/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/no-unknown-animations/index'>; -} -declare module 'stylelint/lib/rules/number-leading-zero/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/number-leading-zero/index'>; -} -declare module 'stylelint/lib/rules/number-max-precision/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/number-max-precision/index'>; -} -declare module 'stylelint/lib/rules/number-no-trailing-zeros/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/number-no-trailing-zeros/index'>; -} -declare module 'stylelint/lib/rules/property-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/property-blacklist/index'>; -} -declare module 'stylelint/lib/rules/property-case/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/property-case/index'>; -} -declare module 'stylelint/lib/rules/property-no-unknown/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/property-no-unknown/index'>; -} -declare module 'stylelint/lib/rules/property-no-vendor-prefix/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/property-no-vendor-prefix/index'>; -} -declare module 'stylelint/lib/rules/property-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/property-whitelist/index'>; -} -declare module 'stylelint/lib/rules/rule-empty-line-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/rule-empty-line-before/index'>; -} -declare module 'stylelint/lib/rules/selector-attribute-brackets-space-inside/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-attribute-brackets-space-inside/index'>; -} -declare module 'stylelint/lib/rules/selector-attribute-operator-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-attribute-operator-blacklist/index'>; -} -declare module 'stylelint/lib/rules/selector-attribute-operator-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-attribute-operator-space-after/index'>; -} -declare module 'stylelint/lib/rules/selector-attribute-operator-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-attribute-operator-space-before/index'>; -} -declare module 'stylelint/lib/rules/selector-attribute-operator-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-attribute-operator-whitelist/index'>; -} -declare module 'stylelint/lib/rules/selector-attribute-quotes/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-attribute-quotes/index'>; -} -declare module 'stylelint/lib/rules/selector-class-pattern/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-class-pattern/index'>; -} -declare module 'stylelint/lib/rules/selector-combinator-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-combinator-blacklist/index'>; -} -declare module 'stylelint/lib/rules/selector-combinator-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-combinator-space-after/index'>; -} -declare module 'stylelint/lib/rules/selector-combinator-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-combinator-space-before/index'>; -} -declare module 'stylelint/lib/rules/selector-combinator-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-combinator-whitelist/index'>; -} -declare module 'stylelint/lib/rules/selector-descendant-combinator-no-non-space/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-descendant-combinator-no-non-space/index'>; -} -declare module 'stylelint/lib/rules/selector-id-pattern/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-id-pattern/index'>; -} -declare module 'stylelint/lib/rules/selector-list-comma-newline-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-list-comma-newline-after/index'>; -} -declare module 'stylelint/lib/rules/selector-list-comma-newline-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-list-comma-newline-before/index'>; -} -declare module 'stylelint/lib/rules/selector-list-comma-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-list-comma-space-after/index'>; -} -declare module 'stylelint/lib/rules/selector-list-comma-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-list-comma-space-before/index'>; -} -declare module 'stylelint/lib/rules/selector-max-attribute/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-max-attribute/index'>; -} -declare module 'stylelint/lib/rules/selector-max-class/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-max-class/index'>; -} -declare module 'stylelint/lib/rules/selector-max-combinators/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-max-combinators/index'>; -} -declare module 'stylelint/lib/rules/selector-max-compound-selectors/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-max-compound-selectors/index'>; -} -declare module 'stylelint/lib/rules/selector-max-empty-lines/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-max-empty-lines/index'>; -} -declare module 'stylelint/lib/rules/selector-max-id/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-max-id/index'>; -} -declare module 'stylelint/lib/rules/selector-max-pseudo-class/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-max-pseudo-class/index'>; -} -declare module 'stylelint/lib/rules/selector-max-specificity/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-max-specificity/index'>; -} -declare module 'stylelint/lib/rules/selector-max-type/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-max-type/index'>; -} -declare module 'stylelint/lib/rules/selector-max-universal/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-max-universal/index'>; -} -declare module 'stylelint/lib/rules/selector-nested-pattern/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-nested-pattern/index'>; -} -declare module 'stylelint/lib/rules/selector-no-qualifying-type/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-no-qualifying-type/index'>; -} -declare module 'stylelint/lib/rules/selector-no-vendor-prefix/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-no-vendor-prefix/index'>; -} -declare module 'stylelint/lib/rules/selector-pseudo-class-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-pseudo-class-blacklist/index'>; -} -declare module 'stylelint/lib/rules/selector-pseudo-class-case/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-pseudo-class-case/index'>; -} -declare module 'stylelint/lib/rules/selector-pseudo-class-no-unknown/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-pseudo-class-no-unknown/index'>; -} -declare module 'stylelint/lib/rules/selector-pseudo-class-parentheses-space-inside/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-pseudo-class-parentheses-space-inside/index'>; -} -declare module 'stylelint/lib/rules/selector-pseudo-class-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-pseudo-class-whitelist/index'>; -} -declare module 'stylelint/lib/rules/selector-pseudo-element-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-pseudo-element-blacklist/index'>; -} -declare module 'stylelint/lib/rules/selector-pseudo-element-case/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-pseudo-element-case/index'>; -} -declare module 'stylelint/lib/rules/selector-pseudo-element-colon-notation/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-pseudo-element-colon-notation/index'>; -} -declare module 'stylelint/lib/rules/selector-pseudo-element-no-unknown/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-pseudo-element-no-unknown/index'>; -} -declare module 'stylelint/lib/rules/selector-pseudo-element-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-pseudo-element-whitelist/index'>; -} -declare module 'stylelint/lib/rules/selector-type-case/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-type-case/index'>; -} -declare module 'stylelint/lib/rules/selector-type-no-unknown/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selector-type-no-unknown/index'>; -} -declare module 'stylelint/lib/rules/selectorAttributeOperatorSpaceChecker.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selectorAttributeOperatorSpaceChecker'>; -} -declare module 'stylelint/lib/rules/selectorCombinatorSpaceChecker.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selectorCombinatorSpaceChecker'>; -} -declare module 'stylelint/lib/rules/selectorListCommaWhitespaceChecker.js' { - declare module.exports: $Exports<'stylelint/lib/rules/selectorListCommaWhitespaceChecker'>; -} -declare module 'stylelint/lib/rules/shorthand-property-no-redundant-values/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/shorthand-property-no-redundant-values/index'>; -} -declare module 'stylelint/lib/rules/string-no-newline/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/string-no-newline/index'>; -} -declare module 'stylelint/lib/rules/string-quotes/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/string-quotes/index'>; -} -declare module 'stylelint/lib/rules/time-min-milliseconds/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/time-min-milliseconds/index'>; -} -declare module 'stylelint/lib/rules/unit-blacklist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/unit-blacklist/index'>; -} -declare module 'stylelint/lib/rules/unit-case/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/unit-case/index'>; -} -declare module 'stylelint/lib/rules/unit-no-unknown/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/unit-no-unknown/index'>; -} -declare module 'stylelint/lib/rules/unit-whitelist/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/unit-whitelist/index'>; -} -declare module 'stylelint/lib/rules/value-keyword-case/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/value-keyword-case/index'>; -} -declare module 'stylelint/lib/rules/value-list-comma-newline-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/value-list-comma-newline-after/index'>; -} -declare module 'stylelint/lib/rules/value-list-comma-newline-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/value-list-comma-newline-before/index'>; -} -declare module 'stylelint/lib/rules/value-list-comma-space-after/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/value-list-comma-space-after/index'>; -} -declare module 'stylelint/lib/rules/value-list-comma-space-before/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/value-list-comma-space-before/index'>; -} -declare module 'stylelint/lib/rules/value-list-max-empty-lines/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/value-list-max-empty-lines/index'>; -} -declare module 'stylelint/lib/rules/value-no-vendor-prefix/index.js' { - declare module.exports: $Exports<'stylelint/lib/rules/value-no-vendor-prefix/index'>; -} -declare module 'stylelint/lib/rules/valueListCommaWhitespaceChecker.js' { - declare module.exports: $Exports<'stylelint/lib/rules/valueListCommaWhitespaceChecker'>; -} -declare module 'stylelint/lib/standalone.js' { - declare module.exports: $Exports<'stylelint/lib/standalone'>; -} -declare module 'stylelint/lib/testUtils/basicChecks.js' { - declare module.exports: $Exports<'stylelint/lib/testUtils/basicChecks'>; -} -declare module 'stylelint/lib/testUtils/createRuleTester.js' { - declare module.exports: $Exports<'stylelint/lib/testUtils/createRuleTester'>; -} -declare module 'stylelint/lib/testUtils/mergeTestDescriptions.js' { - declare module.exports: $Exports<'stylelint/lib/testUtils/mergeTestDescriptions'>; -} -declare module 'stylelint/lib/utils/addEmptyLineAfter.js' { - declare module.exports: $Exports<'stylelint/lib/utils/addEmptyLineAfter'>; -} -declare module 'stylelint/lib/utils/addEmptyLineBefore.js' { - declare module.exports: $Exports<'stylelint/lib/utils/addEmptyLineBefore'>; -} -declare module 'stylelint/lib/utils/atRuleParamIndex.js' { - declare module.exports: $Exports<'stylelint/lib/utils/atRuleParamIndex'>; -} -declare module 'stylelint/lib/utils/beforeBlockString.js' { - declare module.exports: $Exports<'stylelint/lib/utils/beforeBlockString'>; -} -declare module 'stylelint/lib/utils/blockString.js' { - declare module.exports: $Exports<'stylelint/lib/utils/blockString'>; -} -declare module 'stylelint/lib/utils/blurComments.js' { - declare module.exports: $Exports<'stylelint/lib/utils/blurComments'>; -} -declare module 'stylelint/lib/utils/blurFunctionArguments.js' { - declare module.exports: $Exports<'stylelint/lib/utils/blurFunctionArguments'>; -} -declare module 'stylelint/lib/utils/blurInterpolation.js' { - declare module.exports: $Exports<'stylelint/lib/utils/blurInterpolation'>; -} -declare module 'stylelint/lib/utils/checkAgainstRule.js' { - declare module.exports: $Exports<'stylelint/lib/utils/checkAgainstRule'>; -} -declare module 'stylelint/lib/utils/checkInvalidCLIOptions.js' { - declare module.exports: $Exports<'stylelint/lib/utils/checkInvalidCLIOptions'>; -} -declare module 'stylelint/lib/utils/configurationError.js' { - declare module.exports: $Exports<'stylelint/lib/utils/configurationError'>; -} -declare module 'stylelint/lib/utils/containsString.js' { - declare module.exports: $Exports<'stylelint/lib/utils/containsString'>; -} -declare module 'stylelint/lib/utils/declarationValueIndex.js' { - declare module.exports: $Exports<'stylelint/lib/utils/declarationValueIndex'>; -} -declare module 'stylelint/lib/utils/eachDeclarationBlock.js' { - declare module.exports: $Exports<'stylelint/lib/utils/eachDeclarationBlock'>; -} -declare module 'stylelint/lib/utils/FileCache.js' { - declare module.exports: $Exports<'stylelint/lib/utils/FileCache'>; -} -declare module 'stylelint/lib/utils/filterFilePaths.js' { - declare module.exports: $Exports<'stylelint/lib/utils/filterFilePaths'>; -} -declare module 'stylelint/lib/utils/findAnimationName.js' { - declare module.exports: $Exports<'stylelint/lib/utils/findAnimationName'>; -} -declare module 'stylelint/lib/utils/findAtRuleContext.js' { - declare module.exports: $Exports<'stylelint/lib/utils/findAtRuleContext'>; -} -declare module 'stylelint/lib/utils/findFontFamily.js' { - declare module.exports: $Exports<'stylelint/lib/utils/findFontFamily'>; -} -declare module 'stylelint/lib/utils/findListStyleType.js' { - declare module.exports: $Exports<'stylelint/lib/utils/findListStyleType'>; -} -declare module 'stylelint/lib/utils/functionArgumentsSearch.js' { - declare module.exports: $Exports<'stylelint/lib/utils/functionArgumentsSearch'>; -} -declare module 'stylelint/lib/utils/getCacheFile.js' { - declare module.exports: $Exports<'stylelint/lib/utils/getCacheFile'>; -} -declare module 'stylelint/lib/utils/getFormatterOptionsText.js' { - declare module.exports: $Exports<'stylelint/lib/utils/getFormatterOptionsText'>; -} -declare module 'stylelint/lib/utils/getModulePath.js' { - declare module.exports: $Exports<'stylelint/lib/utils/getModulePath'>; -} -declare module 'stylelint/lib/utils/getNextNonSharedLineCommentNode.js' { - declare module.exports: $Exports<'stylelint/lib/utils/getNextNonSharedLineCommentNode'>; -} -declare module 'stylelint/lib/utils/getOsEol.js' { - declare module.exports: $Exports<'stylelint/lib/utils/getOsEol'>; -} -declare module 'stylelint/lib/utils/getPreviousNonSharedLineCommentNode.js' { - declare module.exports: $Exports<'stylelint/lib/utils/getPreviousNonSharedLineCommentNode'>; -} -declare module 'stylelint/lib/utils/getSchemeFromUrl.js' { - declare module.exports: $Exports<'stylelint/lib/utils/getSchemeFromUrl'>; -} -declare module 'stylelint/lib/utils/getUnitFromValueNode.js' { - declare module.exports: $Exports<'stylelint/lib/utils/getUnitFromValueNode'>; -} -declare module 'stylelint/lib/utils/hasBlock.js' { - declare module.exports: $Exports<'stylelint/lib/utils/hasBlock'>; -} -declare module 'stylelint/lib/utils/hasEmptyBlock.js' { - declare module.exports: $Exports<'stylelint/lib/utils/hasEmptyBlock'>; -} -declare module 'stylelint/lib/utils/hasEmptyLine.js' { - declare module.exports: $Exports<'stylelint/lib/utils/hasEmptyLine'>; -} -declare module 'stylelint/lib/utils/hash.js' { - declare module.exports: $Exports<'stylelint/lib/utils/hash'>; -} -declare module 'stylelint/lib/utils/hasInterpolation.js' { - declare module.exports: $Exports<'stylelint/lib/utils/hasInterpolation'>; -} -declare module 'stylelint/lib/utils/hasLessInterpolation.js' { - declare module.exports: $Exports<'stylelint/lib/utils/hasLessInterpolation'>; -} -declare module 'stylelint/lib/utils/hasPsvInterpolation.js' { - declare module.exports: $Exports<'stylelint/lib/utils/hasPsvInterpolation'>; -} -declare module 'stylelint/lib/utils/hasScssInterpolation.js' { - declare module.exports: $Exports<'stylelint/lib/utils/hasScssInterpolation'>; -} -declare module 'stylelint/lib/utils/hasTplInterpolation.js' { - declare module.exports: $Exports<'stylelint/lib/utils/hasTplInterpolation'>; -} -declare module 'stylelint/lib/utils/isAfterComment.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isAfterComment'>; -} -declare module 'stylelint/lib/utils/isAfterSingleLineComment.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isAfterSingleLineComment'>; -} -declare module 'stylelint/lib/utils/isAfterStandardPropertyDeclaration.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isAfterStandardPropertyDeclaration'>; -} -declare module 'stylelint/lib/utils/isAutoprefixable.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isAutoprefixable'>; -} -declare module 'stylelint/lib/utils/isBlocklessAtRuleAfterBlocklessAtRule.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isBlocklessAtRuleAfterBlocklessAtRule'>; -} -declare module 'stylelint/lib/utils/isBlocklessAtRuleAfterSameNameBlocklessAtRule.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isBlocklessAtRuleAfterSameNameBlocklessAtRule'>; -} -declare module 'stylelint/lib/utils/isCounterIncrementCustomIdentValue.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isCounterIncrementCustomIdentValue'>; -} -declare module 'stylelint/lib/utils/isCounterResetCustomIdentValue.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isCounterResetCustomIdentValue'>; -} -declare module 'stylelint/lib/utils/isCustomElement.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isCustomElement'>; -} -declare module 'stylelint/lib/utils/isCustomMediaQuery.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isCustomMediaQuery'>; -} -declare module 'stylelint/lib/utils/isCustomProperty.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isCustomProperty'>; -} -declare module 'stylelint/lib/utils/isCustomPropertySet.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isCustomPropertySet'>; -} -declare module 'stylelint/lib/utils/isCustomSelector.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isCustomSelector'>; -} -declare module 'stylelint/lib/utils/isFirstNested.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isFirstNested'>; -} -declare module 'stylelint/lib/utils/isFirstNodeOfRoot.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isFirstNodeOfRoot'>; -} -declare module 'stylelint/lib/utils/isKeyframeRule.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isKeyframeRule'>; -} -declare module 'stylelint/lib/utils/isKeyframeSelector.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isKeyframeSelector'>; -} -declare module 'stylelint/lib/utils/isNumbery.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isNumbery'>; -} -declare module 'stylelint/lib/utils/isOnlyWhitespace.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isOnlyWhitespace'>; -} -declare module 'stylelint/lib/utils/isRangeContextMediaFeature.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isRangeContextMediaFeature'>; -} -declare module 'stylelint/lib/utils/isSharedLineComment.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isSharedLineComment'>; -} -declare module 'stylelint/lib/utils/isSingleLineString.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isSingleLineString'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxAtRule.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxAtRule'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxCombinator.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxCombinator'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxDeclaration.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxDeclaration'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxFunction.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxFunction'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxMediaFeature.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxMediaFeature'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxMediaFeatureName.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxMediaFeatureName'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxProperty.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxProperty'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxRule.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxRule'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxSelector.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxSelector'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxTypeSelector.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxTypeSelector'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxUrl.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxUrl'>; -} -declare module 'stylelint/lib/utils/isStandardSyntaxValue.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isStandardSyntaxValue'>; -} -declare module 'stylelint/lib/utils/isValidFontSize.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isValidFontSize'>; -} -declare module 'stylelint/lib/utils/isValidHex.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isValidHex'>; -} -declare module 'stylelint/lib/utils/isVariable.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isVariable'>; -} -declare module 'stylelint/lib/utils/isWhitespace.js' { - declare module.exports: $Exports<'stylelint/lib/utils/isWhitespace'>; -} -declare module 'stylelint/lib/utils/matchesStringOrRegExp.js' { - declare module.exports: $Exports<'stylelint/lib/utils/matchesStringOrRegExp'>; -} -declare module 'stylelint/lib/utils/nextNonCommentNode.js' { - declare module.exports: $Exports<'stylelint/lib/utils/nextNonCommentNode'>; -} -declare module 'stylelint/lib/utils/nodeContextLookup.js' { - declare module.exports: $Exports<'stylelint/lib/utils/nodeContextLookup'>; -} -declare module 'stylelint/lib/utils/optionsMatches.js' { - declare module.exports: $Exports<'stylelint/lib/utils/optionsMatches'>; -} -declare module 'stylelint/lib/utils/parseCalcExpression/index.js' { - declare module.exports: $Exports<'stylelint/lib/utils/parseCalcExpression/index'>; -} -declare module 'stylelint/lib/utils/parseCalcExpression/parser.js' { - declare module.exports: $Exports<'stylelint/lib/utils/parseCalcExpression/parser'>; -} -declare module 'stylelint/lib/utils/parseSelector.js' { - declare module.exports: $Exports<'stylelint/lib/utils/parseSelector'>; -} -declare module 'stylelint/lib/utils/rawNodeString.js' { - declare module.exports: $Exports<'stylelint/lib/utils/rawNodeString'>; -} -declare module 'stylelint/lib/utils/removeEmptyLinesAfter.js' { - declare module.exports: $Exports<'stylelint/lib/utils/removeEmptyLinesAfter'>; -} -declare module 'stylelint/lib/utils/removeEmptyLinesBefore.js' { - declare module.exports: $Exports<'stylelint/lib/utils/removeEmptyLinesBefore'>; -} -declare module 'stylelint/lib/utils/report.js' { - declare module.exports: $Exports<'stylelint/lib/utils/report'>; -} -declare module 'stylelint/lib/utils/ruleMessages.js' { - declare module.exports: $Exports<'stylelint/lib/utils/ruleMessages'>; -} -declare module 'stylelint/lib/utils/validateObjectWithArrayProps.js' { - declare module.exports: $Exports<'stylelint/lib/utils/validateObjectWithArrayProps'>; -} -declare module 'stylelint/lib/utils/validateObjectWithStringArrayProps.js' { - declare module.exports: $Exports<'stylelint/lib/utils/validateObjectWithStringArrayProps'>; -} -declare module 'stylelint/lib/utils/validateObjectWithStringOrRegexArrayProps.js' { - declare module.exports: $Exports<'stylelint/lib/utils/validateObjectWithStringOrRegexArrayProps'>; -} -declare module 'stylelint/lib/utils/validateOptions.js' { - declare module.exports: $Exports<'stylelint/lib/utils/validateOptions'>; -} -declare module 'stylelint/lib/utils/whitespaceChecker.js' { - declare module.exports: $Exports<'stylelint/lib/utils/whitespaceChecker'>; -} -declare module 'stylelint/lib/vendor/writeFileAtomic.js' { - declare module.exports: $Exports<'stylelint/lib/vendor/writeFileAtomic'>; -} diff --git a/flow-typed/npm/superagent_vx.x.x.js b/flow-typed/npm/superagent_vx.x.x.js deleted file mode 100644 index 80fae61..0000000 --- a/flow-typed/npm/superagent_vx.x.x.js +++ /dev/null @@ -1,151 +0,0 @@ -// flow-typed signature: bbf22a64d0791ea07c7c6b6c1d118705 -// flow-typed version: <>/superagent_v^5.0.2/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'superagent' - * - * 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 'superagent' { - 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 'superagent/dist/superagent' { - declare module.exports: any; -} - -declare module 'superagent/dist/superagent.min' { - declare module.exports: any; -} - -declare module 'superagent/lib/agent-base' { - declare module.exports: any; -} - -declare module 'superagent/lib/client' { - declare module.exports: any; -} - -declare module 'superagent/lib/is-object' { - declare module.exports: any; -} - -declare module 'superagent/lib/node/agent' { - declare module.exports: any; -} - -declare module 'superagent/lib/node/http2wrapper' { - declare module.exports: any; -} - -declare module 'superagent/lib/node/index' { - declare module.exports: any; -} - -declare module 'superagent/lib/node/parsers/image' { - declare module.exports: any; -} - -declare module 'superagent/lib/node/parsers/index' { - declare module.exports: any; -} - -declare module 'superagent/lib/node/parsers/json' { - declare module.exports: any; -} - -declare module 'superagent/lib/node/parsers/text' { - declare module.exports: any; -} - -declare module 'superagent/lib/node/parsers/urlencoded' { - declare module.exports: any; -} - -declare module 'superagent/lib/node/response' { - declare module.exports: any; -} - -declare module 'superagent/lib/node/unzip' { - declare module.exports: any; -} - -declare module 'superagent/lib/request-base' { - declare module.exports: any; -} - -declare module 'superagent/lib/response-base' { - declare module.exports: any; -} - -declare module 'superagent/lib/utils' { - declare module.exports: any; -} - -// Filename aliases -declare module 'superagent/dist/superagent.js' { - declare module.exports: $Exports<'superagent/dist/superagent'>; -} -declare module 'superagent/dist/superagent.min.js' { - declare module.exports: $Exports<'superagent/dist/superagent.min'>; -} -declare module 'superagent/lib/agent-base.js' { - declare module.exports: $Exports<'superagent/lib/agent-base'>; -} -declare module 'superagent/lib/client.js' { - declare module.exports: $Exports<'superagent/lib/client'>; -} -declare module 'superagent/lib/is-object.js' { - declare module.exports: $Exports<'superagent/lib/is-object'>; -} -declare module 'superagent/lib/node/agent.js' { - declare module.exports: $Exports<'superagent/lib/node/agent'>; -} -declare module 'superagent/lib/node/http2wrapper.js' { - declare module.exports: $Exports<'superagent/lib/node/http2wrapper'>; -} -declare module 'superagent/lib/node/index.js' { - declare module.exports: $Exports<'superagent/lib/node/index'>; -} -declare module 'superagent/lib/node/parsers/image.js' { - declare module.exports: $Exports<'superagent/lib/node/parsers/image'>; -} -declare module 'superagent/lib/node/parsers/index.js' { - declare module.exports: $Exports<'superagent/lib/node/parsers/index'>; -} -declare module 'superagent/lib/node/parsers/json.js' { - declare module.exports: $Exports<'superagent/lib/node/parsers/json'>; -} -declare module 'superagent/lib/node/parsers/text.js' { - declare module.exports: $Exports<'superagent/lib/node/parsers/text'>; -} -declare module 'superagent/lib/node/parsers/urlencoded.js' { - declare module.exports: $Exports<'superagent/lib/node/parsers/urlencoded'>; -} -declare module 'superagent/lib/node/response.js' { - declare module.exports: $Exports<'superagent/lib/node/response'>; -} -declare module 'superagent/lib/node/unzip.js' { - declare module.exports: $Exports<'superagent/lib/node/unzip'>; -} -declare module 'superagent/lib/request-base.js' { - declare module.exports: $Exports<'superagent/lib/request-base'>; -} -declare module 'superagent/lib/response-base.js' { - declare module.exports: $Exports<'superagent/lib/response-base'>; -} -declare module 'superagent/lib/utils.js' { - declare module.exports: $Exports<'superagent/lib/utils'>; -} diff --git a/flow-typed/npm/zlib-sync_vx.x.x.js b/flow-typed/npm/zlib-sync_vx.x.x.js deleted file mode 100644 index 793a690..0000000 --- a/flow-typed/npm/zlib-sync_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: ea32702e42500ea2f15fd4c3b3c503a5 -// flow-typed version: <>/zlib-sync_v^0.1.4/flow_v0.96.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'zlib-sync' - * - * 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 'zlib-sync' { - 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 'zlib-sync/index' { - declare module.exports: $Exports<'zlib-sync'>; -} -declare module 'zlib-sync/index.js' { - declare module.exports: $Exports<'zlib-sync'>; -}