From 6555fb80fdd8f6a5d201efadec3189d1244830a0 Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 22:05:25 +0100 Subject: Izbrisala bin, obj i node-modules. --- .../Front/node_modules/string-width/index.d.ts | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/string-width/index.d.ts (limited to 'sandbox/testAppNevena/Front/node_modules/string-width/index.d.ts') diff --git a/sandbox/testAppNevena/Front/node_modules/string-width/index.d.ts b/sandbox/testAppNevena/Front/node_modules/string-width/index.d.ts deleted file mode 100644 index 12b53097..00000000 --- a/sandbox/testAppNevena/Front/node_modules/string-width/index.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -declare const stringWidth: { - /** - Get the visual width of a string - the number of columns required to display it. - - Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and doesn't affect the width. - - @example - ``` - import stringWidth = require('string-width'); - - stringWidth('a'); - //=> 1 - - stringWidth('古'); - //=> 2 - - stringWidth('\u001B[1m古\u001B[22m'); - //=> 2 - ``` - */ - (string: string): number; - - // TODO: remove this in the next major version, refactor the whole definition to: - // declare function stringWidth(string: string): number; - // export = stringWidth; - default: typeof stringWidth; -} - -export = stringWidth; -- cgit v1.2.3