UNPKG

405 BTypeScriptView Raw
1// Type definitions for window-size 0.2.0
2// Project: https://github.com/jonschlinkert/window-size
3// Definitions by: Pouya Kary <https://github.com/pmkary>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6declare module "window-size" {
7 /** Height of the terminal window.*/
8 export const height: number;
9
10 /** Width of the terminal window.*/
11 export const width: number;
12}