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

15 lines
401 B
JavaScript

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