UNPKG

@serverless-devs/alireadme

Version:

This is a component demo for Serverless Devs Tool

13 lines (12 loc) 461 B
declare type LogColor = "black" | "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "whiteBright" | "gray"; export default class ComponentLogger { static CONTENT: string; static setContent(content: any): void; static log(m: any, color?: LogColor): void; static info(m: any): void; static debug(m: any): void; static error(m: any): void; static warning(m: any): void; static success(m: any): void; } export {};