DefinitelyTyped/types/random-string/random-string-tests.ts
2017-03-24 14:27:52 -07:00

11 lines
175 B
TypeScript

import randomString = require('random-string');
console.log(randomString());
console.log(randomString({
length: 20,
numeric: true,
letters: true,
special: true
}));