mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
341 B
TypeScript
11 lines
341 B
TypeScript
// Type definitions for defaults 1.0.3
|
|
// Project: https://github.com/tmpvar/defaults/
|
|
// Definitions by: Ibtihel CHNAB <https://github.com/IbtihelCHNAB>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function defaults(options: any, defaultOptions: any): any;
|
|
|
|
declare module "defaults" {
|
|
export = defaults;
|
|
}
|