swc/crates/swc_bundler/tests/.cache/deno/152184d716a78f2c569a56e8c0b5ae833890ec78.ts
2021-11-09 20:42:49 +09:00

39 lines
749 B
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.12.1/packages/table/lib/border.ts
export interface IBorder {
top: string;
topMid: string;
topLeft: string;
topRight: string;
bottom: string;
bottomMid: string;
bottomLeft: string;
bottomRight: string;
left: string;
leftMid: string;
mid: string;
midMid: string;
right: string;
rightMid: string;
middle: string;
}
export const border: IBorder = {
top: '─',
topMid: '┬',
topLeft: '┌',
topRight: '┐',
bottom: '─',
bottomMid: '┴',
bottomLeft: '└',
bottomRight: '┘',
left: '│',
leftMid: '├',
mid: '─',
midMid: '┼',
right: '│',
rightMid: '┤',
middle: '│'
};