mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
15 lines
336 B
TypeScript
15 lines
336 B
TypeScript
declare module 'cowsay' {
|
|
|
|
export interface CowsayOptions {
|
|
text: string;
|
|
cow?: string;
|
|
eyes?: string;
|
|
tongue?: string;
|
|
wrap?: boolean;
|
|
wrapLength?: number;
|
|
mode?: 'b' | 'd' | 'g' | 'p' | 's' | 't' | 'w' | 'y'
|
|
}
|
|
|
|
export function say(options: CowsayOptions): string;
|
|
}
|