mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-29 21:17:34 +00:00
13 lines
354 B
TypeScript
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; |