@ably/cli
Version:
Ably CLI for Pub/Sub, Chat and Spaces
17 lines (16 loc) • 460 B
TypeScript
/**
* Display the Ably logo with a gradient color
* @param log Function to use for logging each line
* @param startColor The starting color of the gradient (bottom-left)
* @param endColor The ending color of the gradient (top-right)
*/
export declare function displayLogo(log: (message: string) => void, startColor?: {
b: number;
g: number;
r: number;
}, // #FFB096 (orange)
endColor?: {
b: number;
g: number;
r: number;
}): void;