UNPKG

typescript-assistant

Version:

Combines and integrates professional Typescript tools into your project

7 lines (6 loc) 443 B
import { Logger } from "./logger"; export declare function findChangedFiles(refA?: string, refB?: string): string[]; export declare function updateDependencies(logger: Logger, previousHead: string): Promise<void>; export declare function pnpmLockFileChanged(refA: string, refB: string): boolean; export declare function npmLockFileChanged(refA: string, refB: string): boolean; export declare function filterTsFiles(files: string[]): string[];