mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
418 B
TypeScript
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;
|
|
}
|