From 9bb3a67214d26597c911474f02f2d99daa2fdacd Mon Sep 17 00:00:00 2001 From: Amorites <751809522@qq.com> Date: Fri, 15 Feb 2019 17:49:46 +0800 Subject: [PATCH] Create non-secure.d.ts --- types/nanoid/non-secure.d.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 types/nanoid/non-secure.d.ts diff --git a/types/nanoid/non-secure.d.ts b/types/nanoid/non-secure.d.ts new file mode 100644 index 0000000000..b6a78f8c52 --- /dev/null +++ b/types/nanoid/non-secure.d.ts @@ -0,0 +1,3 @@ +declare function nanoid(size?: number): string; + +export = nanoid;