DefinitelyTyped/types/fast-chunk-string/index.d.ts
2019-11-07 10:25:58 -08:00

14 lines
415 B
TypeScript

// Type definitions for fast-chunk-string 1.0
// Project: https://github.com/vladgolubev/fast-chunk-string#readme
// Definitions by: Junxiao Shi <https://github.com/yoursunny>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface Options {
size: number;
unicodeAware?: boolean;
}
declare function fastChunkString(str: string, options: Options): string[];
export = fastChunkString;