From 59493a0cd99f269c9896c49b78e8b3913527c9da Mon Sep 17 00:00:00 2001 From: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com> Date: Sun, 18 Aug 2019 12:42:58 +0900 Subject: uuid() と lint (#5288) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Import only v4 uuid, uuid() without version is deprecated * Add Missing semicolon --- src/@types/lookup-dns-cache.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/@types') diff --git a/src/@types/lookup-dns-cache.d.ts b/src/@types/lookup-dns-cache.d.ts index 8dea52ea20..bae9df5faf 100644 --- a/src/@types/lookup-dns-cache.d.ts +++ b/src/@types/lookup-dns-cache.d.ts @@ -1,5 +1,5 @@ declare module 'lookup-dns-cache' { - import { LookupOneOptions, LookupAllOptions, LookupOptions, LookupAddress } from 'dns' + import { LookupOneOptions, LookupAllOptions, LookupOptions, LookupAddress } from 'dns'; function lookup(hostname: string, family: number, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void): void; function lookup(hostname: string, options: LookupOneOptions, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void): void; -- cgit v1.2.3-freya