style(read-pkg-up): fix linting

This commit is contained in:
Louis Orleans
2017-09-20 12:06:10 -07:00
parent 531da5fc78
commit 3f097b8133

View File

@@ -4,9 +4,9 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare namespace ReadPkgUp {
export function sync(options?: Options): Package;
function sync(options?: Options): Package;
export interface Options {
interface Options {
/**
* Directory to start looking for a package.json file.
*
@@ -21,7 +21,7 @@ declare namespace ReadPkgUp {
normalize?: boolean;
}
export interface Package {
interface Package {
[key: string]: any;
}
}