[parse-git-config] add missing options

This commit is contained in:
LexSwed
2018-08-07 14:26:47 +03:00
parent 92796daeb7
commit 4603f23326
+2
View File
@@ -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);