asciitorium
Version:
an ASCII ui framework for web + cli
9 lines (8 loc) • 307 B
TypeScript
import { Component, ComponentProps } from '../core/Component';
export interface HorizontalLineOptions extends Omit<ComponentProps, 'width' | 'height'> {
length?: number;
}
export declare class HorizontalLine extends Component {
constructor(options: HorizontalLineOptions);
draw(): string[][];
}