swc/bundler/tests/.cache/deno/152184d716a78f2c569a56e8c0b5ae833890ec78.ts
강동윤 1178686a4c
fix(bundler): Fix bundler (#1576)
swc_bundler:
 - Fix remapping of exports. (denoland/deno#9350)
2021-04-16 18:09:38 +00: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: '│'
};