mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-15 09:37:52 +08:00
12 lines
373 B
TypeScript
12 lines
373 B
TypeScript
// Type definitions for fullname v2.1.0
|
|
// Project: https://www.npmjs.com/package/fullname
|
|
// Definitions by: Klaus Reimer <https://github.com/kayahr/>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../es6-promise/es6-promise.d.ts" />
|
|
|
|
declare module "fullname" {
|
|
function fullname(): Promise<string>;
|
|
export = fullname;
|
|
}
|