DefinitelyTyped/types/rc/index.d.ts
2017-03-24 14:27:52 -07:00

13 lines
354 B
TypeScript

// Type definitions for rc
// Project: https://github.com/dominictarr/rc
// Definitions by: Daniel Rosenwasser <https://github.com/DanielRosenwasser>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function rc(
name: string,
defaults?: any,
argv?: {} | null,
parse?: ((content: string) => any) | null
): any;
export = rc;