UNPKG

flagpole

Version:

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

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