UNPKG

asciitorium

Version:

an ASCII ui framework for web + cli

9 lines (8 loc) 336 B
import type { Component } from '../Component'; import { LayoutStrategy, LayoutOptions } from './LayoutStrategy'; export declare class VerticalLayoutStrategy implements LayoutStrategy { private fit; constructor(options?: LayoutOptions); layout(parent: Component, children: Component[]): void; private resolveAlignment; }