mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
9 lines
320 B
TypeScript
9 lines
320 B
TypeScript
// Type definitions for yosay
|
|
// Project: https://github.com/yeoman/yosay
|
|
// Definitions by: Kentaro Okuno <http://github.com/armorik83>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
declare module 'yosay' {
|
|
function yosay(message?: string, options?: {maxLength: number}): string;
|
|
export = yosay;
|
|
} |