10 lines
336 B
TypeScript
10 lines
336 B
TypeScript
import { FileStatusResult } from '../../../typings';
|
|
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);
|
|
}
|