templates-mo
Version:
Templates is a scaffolding framework that makes code generation simple, dynamic, and reusable. Generate files, parts of your app, or whole project structures—without the repetitive copy-pasting
12 lines (11 loc) • 397 B
TypeScript
export default class CreateDebugGroup<TData = any> {
name: string;
queue: [string, ...TData[]][];
constructor(name: string, queue?: [string, ...TData[]][]);
info(...message: TData[]): void;
error(...message: TData[]): void;
debug(...message: TData[]): void;
success(...message: TData[]): void;
warn(...message: TData[]): void;
log(...message: TData[]): void;
}