debugginglog.d.ts 338 B

123456789
  1. import { DrawPosterResult } from '.';
  2. export declare class DebuggingLog {
  3. private dp;
  4. private $color;
  5. constructor(dp: Partial<DrawPosterResult>);
  6. log: (message: string, color?: string, ...args: any[]) => void;
  7. success: (message: string, ...args: any[]) => void;
  8. error: (message: string, ...args: any[]) => void;
  9. }