@ka1do/kit
Version:
12 lines (11 loc) • 330 B
TypeScript
import type { DrawVerticalLine } from './types/api';
declare type Separator = {
readonly left: string;
readonly right: string;
readonly join: string;
};
export default function drawHorizontalContent(contents: string[], config: {
separator: Separator;
drawVerticalLine: DrawVerticalLine;
}): string;
export {};