@shirtiny/logger
Version:
Simple console log with css, write in typescript.
12 lines (11 loc) • 407 B
TypeScript
export interface Shape {
title(color?: string): string;
message(color?: string): string;
message_button(color?: string, bgColor?: string, shadowColor?: string): string;
}
export declare class Slider implements Shape {
constructor();
title(color?: string): string;
message(color?: string): string;
message_button(color?: string, bgColor?: string, shadowColor?: string): string;
}