mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
18 lines
611 B
TypeScript
18 lines
611 B
TypeScript
import cliBoxes = require('cli-boxes');
|
|
|
|
cliBoxes.single; // $ExpectType BoxDefinition
|
|
cliBoxes.double; // $ExpectType BoxDefinition
|
|
cliBoxes.round; // $ExpectType BoxDefinition
|
|
cliBoxes['single-double']; // $ExpectType BoxDefinition
|
|
cliBoxes['double-single']; // $ExpectType BoxDefinition
|
|
cliBoxes.classic; // $ExpectType BoxDefinition
|
|
|
|
const single = cliBoxes.single;
|
|
|
|
single.bottomLeft; // $ExpectType string
|
|
single.bottomRight; // $ExpectType string
|
|
single.horizontal; // $ExpectType string
|
|
single.topLeft; // $ExpectType string
|
|
single.topRight; // $ExpectType string
|
|
single.vertical; // $ExpectType string
|