DefinitelyTyped/types/wcwidth/index.d.ts
Junyoung Choi f56d8aacd5 Remove unnecessary namespace and fix importing expression in test module
This implementation is for making `import * as someModule from 'someModule'` is available.
But this usage is note appropiate.
2017-09-06 16:15:21 +09:00

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;