mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
6 lines
259 B
TypeScript
6 lines
259 B
TypeScript
import clip = require('text-clipper');
|
|
|
|
clip('text', 123); // $ExpectType string
|
|
clip('text', 123, { breakWords: true, html: false }); // $ExpectType string
|
|
clip('text', 123, { imageWeight: 123, indicator: 'something', maxLines: 321 }); // $ExpectType string
|