UNPKG

approvals

Version:

Approval Tests Library - Capturing Human Intelligence

10 lines (9 loc) 722 B
declare const createEmptyFileIfNotExists: (file: string) => void; declare const assertFileExists: (file: string) => void; declare const hasCommandLineArgument: (arg: string) => boolean; declare const isBinaryFile: (buffer: Buffer | String) => boolean; declare const findProgramOnPath: (programName: string) => string | null; declare const searchForExecutable: (folderInProgramInFiles?: string, fileName?: string) => string; declare const fixFilePathSlashes: (path_: string) => string; declare const stringifyKeysInOrder: (data: any) => string; export { createEmptyFileIfNotExists, assertFileExists, hasCommandLineArgument, isBinaryFile, findProgramOnPath, searchForExecutable, fixFilePathSlashes, stringifyKeysInOrder, };