mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
6 lines
227 B
TypeScript
6 lines
227 B
TypeScript
import * as randomize from 'randomatic';
|
|
|
|
randomize('*', 10); // $ExpectedType string
|
|
randomize('?', 20, { chars: 'jonschlinkert' }); // $ExpectedType string
|
|
randomize('*', 20, { exclude: '0oOiIlL1' }); // $ExpectedType string
|