From 4603f233267c3c86422cff3e82fd243bcbe3c641 Mon Sep 17 00:00:00 2001 From: LexSwed Date: Tue, 7 Aug 2018 14:26:47 +0300 Subject: [PATCH] [parse-git-config] add missing options --- types/parse-git-config/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/parse-git-config/index.d.ts b/types/parse-git-config/index.d.ts index cae3e74a45..3ca55b897a 100644 --- a/types/parse-git-config/index.d.ts +++ b/types/parse-git-config/index.d.ts @@ -49,6 +49,8 @@ interface Options extends Pick<_Options, keyof _Options> { } interface _Options { cwd: string; path: string; + include?: boolean; + expandKeys?: boolean; } type ParseCallback = ((err: Error | null, config: Config) => void);