Merge pull request #10401 from pmkary/master

definition for window-size added
This commit is contained in:
Mine Starks
2016-08-01 12:33:08 -07:00
committed by GitHub

12
window-size/window-size.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
// Type definitions for window-size 0.2.0
// Project: https://github.com/jonschlinkert/window-size
// Definitions by: Pouya Kary <https://github.com/pmkary>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "window-size" {
/** Height of the terminal window.*/
export const height: number;
/** Width of the terminal window.*/
export const width: number;
}