flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
10 lines (9 loc) • 307 B
TypeScript
import { LogItem } from './logitem';
import { iConsoleLine } from '../interfaces';
import { LogItemType } from '../enums';
export declare class LogComment extends LogItem {
readonly type = LogItemType.Comment;
readonly className = "comment";
toHtml(): string;
toConsole(): iConsoleLine[];
}