mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
This implementation is for making `import * as someModule from 'someModule'` is available. But this usage is note appropiate.
9 lines
282 B
TypeScript
9 lines
282 B
TypeScript
// Type definitions for wcwidth 1.0
|
|
// Project: https://github.com/timoxley/wcwidth
|
|
// Definitions by: Junyoung Choi <https://github.com/rokt33r>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function wcwidth(input: string): number;
|
|
|
|
export = wcwidth;
|