@teaui/core
Version:
A high-level terminal UI library for Node
13 lines • 436 B
JavaScript
import { Container } from '../Container.js';
export class Window extends Container {
constructor(props = {}) {
super(props);
}
naturalSize(available) {
// even though we use the parent size no matter what, we do need to give child
// views a chance to "resize" according to the available frame
super.naturalSize(available);
return available;
}
}
//# sourceMappingURL=Window.js.map