import type { Brand } from './brand'; /** * Absolute path to some directory. */ export type AbsolutePathToDirectory = Brand; /** * Path to the directory from project root (for example "autotests/tests"). */ export type DirectoryPathFromRoot = Brand; /** * Path to the file from project root (for example "autotests/packs/allTests.ts"). */ export type FilePathFromRoot = Brand; /** * Relative file path for files with tests or tasks from project root directory. */ export type TestFilePath = Brand;