UNPKG

flagpole

Version:

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

17 lines (16 loc) 515 B
import { LogItem } from './logitem'; import { LogItemType } from '../enums'; import { iConsoleLine } from '../interfaces'; export declare class LogSuiteHeading extends LogItem { readonly type: LogItemType; readonly className: string; toHtml(): string; } export declare class LogScenarioHeading extends LogSuiteHeading { toHtml(): string; toConsole(): iConsoleLine[]; } export declare class LogScenarioSubHeading extends LogSuiteHeading { toHtml(): string; toConsole(): iConsoleLine[]; }