flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
19 lines (18 loc) • 579 B
TypeScript
import { LogItem } from "./logitem";
import { LineType } from "../enums";
import { iConsoleLine } from "../interfaces";
export declare class LogSuiteHeading extends LogItem {
readonly type: LineType;
readonly className = "heading";
toHtml(): string;
}
export declare class LogScenarioHeading extends LogSuiteHeading {
readonly type = LineType.h2;
toHtml(): string;
toConsole(): iConsoleLine[];
}
export declare class LogScenarioSubHeading extends LogSuiteHeading {
readonly type = LineType.h3;
toHtml(): string;
toConsole(): iConsoleLine[];
}