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.
17 lines (16 loc) • 841 B
TypeScript
import type { BuildType } from '../type-checker';
/** Initiates the type-checker watcher and an additional watcher that detects new entrypoints that have been added by the user. */
export declare function initiateTypeCheckerWatchers(options: {
appRoot: string;
entrypoints: string[];
tsconfigFullPath: string;
glob: string;
buildType: BuildType;
}): Promise<void>;
/** Watches the files from the given array of entrypoints and incrementally typechecks them when something changes. Type errors will be logged to the console if there appear to be some. */
export declare function watch(options: {
appRoot: string;
entrypoints: string[];
tsConfigFullPath: string;
buildType: BuildType;
}): Promise<import("typescript").WatchOfFilesAndCompilerOptions<import("typescript").SemanticDiagnosticsBuilderProgram>>;