@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
11 lines • 425 B
TypeScript
import type { JSONObject } from 'tiny-types';
import { TinyType } from 'tiny-types';
import { Path } from './Path';
export declare class FileSystemLocation extends TinyType {
readonly path: Path;
readonly line?: number;
readonly column?: number;
static fromJSON(o: JSONObject): FileSystemLocation;
constructor(path: Path, line?: number, column?: number);
}
//# sourceMappingURL=FileSystemLocation.d.ts.map