This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/flow-typed/npm/randomstring_v1.x.x.js

14 lines
409 B
JavaScript

// flow-typed signature: 79b8bf1c61560e00bba06b86ef79871b
// flow-typed version: c6154227d1/randomstring_v1.x.x/flow_>=v0.104.x
declare module "randomstring" {
declare type GenerateOptions = {
length?: number,
readable?: boolean,
charset?: string,
capitalization?: string,
...
};
declare module.exports: { generate: (options?: GenerateOptions | number) => string, ... }
}