DefinitelyTyped/types/string-width/index.d.ts
2018-05-30 10:18:34 +08:00

10 lines
332 B
TypeScript

// Type definitions for string-width 2.0
// Project: https://github.com/sindresorhus/string-width
// Definitions by: Rong Shen <https://github.com/jacobbubu>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
declare function stringWidth(text: string): number;
export = stringWidth;