Move all packages to a types directory

This commit is contained in:
Andy Hanson
2017-03-24 14:27:52 -07:00
parent f9869dc191
commit 354cec620d
13846 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import * as randomstring from "randomstring";
randomstring.generate();
randomstring.generate(24);
randomstring.generate({
length: 12,
readable: true,
capitalization: "",
charset: "alphabetic"
});
randomstring.generate({
charset: "abc"
});