@coat/cli
Version:
TODO: See #3
13 lines (12 loc) • 414 B
TypeScript
import { FileOperation } from "./get-file-operations";
export declare enum Tense {
Past = 0,
Future = 1
}
/**
* Creates a log message for file operations of a sync run.
*
* @param fileOperation The file operation that should be logged
* @param tense The tense to use, e.g. create or created
*/
export declare function createFileOperationLogMessage(fileOperation: FileOperation, tense: Tense): string;