UNPKG
@teaui/core
Version:
latest (1.15.14)
1.15.14
1.14.14
1.13.14
1.12.14
1.11.14
1.11.13
1.11.12
1.11.10
1.11.9
1.11.8
1.10.8
1.9.8
1.8.8
1.7.8
1.6.8
1.5.8
1.4.8
1.3.8
1.3.7
1.3.6
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.5
1.1.4
A high-level terminal UI library for Node
github.com/colinta/teaui
colinta/teaui
@teaui/core
/
.dist
/
components
/
Window.d.ts
7 lines
(6 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
type
Props
as
ContainerProps
,
Container
}
from
'../Container'
;
import
{
Size
}
from
'../geometry'
;
export
declare
class
Window
extends
Container
{
constructor
(
{ children, ...viewProps }?:
ContainerProps
);
naturalSize
(
available
:
Size
):
Size
; }