dt-app
Version:
The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.
14 lines (13 loc) • 434 B
TypeScript
/** Interface for the file stream. */
interface LogFileStream {
/** Setup log file */
setup(root: string): Promise<void>;
/** Write log to file. */
write(text: string): void;
/** Returns the path to the current log file. */
getLogFile(): string;
}
/** Initialize file stream */
export declare function initLogFileStream(root: string): Promise<void>;
export declare let logFileStream: LogFileStream;
export {};