UNPKG

flagpole

Version:

Simple and fast DOM integration, headless or headful browser, and REST API testing framework.

10 lines (9 loc) 294 B
import { LogItem } from './logitem'; import { iConsoleLine } from '../interfaces'; import { LogItemType } from '../enums'; export declare class LogComment extends LogItem { readonly type: LogItemType; readonly className: string; toHtml(): string; toConsole(): iConsoleLine[]; }