DefinitelyTyped/title/title.d.ts
Fahad Hossain 1d03fe4090 add title v1.0.0 by tj (#9675)
* add title v1.0.0 by tj

* i made a mistake naming the file
2016-06-19 11:44:49 +09:00

15 lines
418 B
TypeScript

// Type definitions for title v1.0.0
// Project: https://www.npmjs.com/package/title
// Definitions by: Fahad <https://github.com/fa7ad>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "title"{
function Title(newtitle: string): void;
function Title(pattern: string, newtitle?: string): void;
namespace Title {
function reset(): void;
}
export = Title;
}