mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-08 18:34:06 +08:00
8 lines
305 B
TypeScript
8 lines
305 B
TypeScript
// Type definitions for yosay
|
|
// Project: https://github.com/yeoman/yosay
|
|
// Definitions by: Kentaro Okuno <https://github.com/armorik83>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function yosay(message?: string, options?: { maxLength: number }): string;
|
|
export = yosay;
|