blob: fd680a424b1701c62e310c1b629d9a0f2679eb04 (
plain)
1
2
3
4
5
6
7
8
9
|
import { FileStatusResult } from '../../../typings/response';
export declare const fromPathRegex: RegExp;
export declare class FileStatusSummary implements FileStatusResult {
path: string;
index: string;
working_dir: string;
readonly from: string | undefined;
constructor(path: string, index: string, working_dir: string);
}
|