mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00: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;
|