mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
21 lines
543 B
TypeScript
21 lines
543 B
TypeScript
import { DiffDelta } from './diff-delta';
|
|
import { StatusFileOptions } from './status-file-options';
|
|
|
|
export class StatusFile {
|
|
constructor(args: StatusFileOptions);
|
|
headToIndex(): DiffDelta;
|
|
indexToWorkdir(): DiffDelta;
|
|
inIndex(): boolean;
|
|
inWorkingTree(): boolean;
|
|
isConflicted(): boolean;
|
|
isDeleted(): boolean;
|
|
isIgnored(): boolean;
|
|
isModified(): boolean;
|
|
isNew(): boolean;
|
|
isRenamed(): boolean;
|
|
isTypechange(): boolean;
|
|
path(): string;
|
|
status(): string[];
|
|
statusBit(): number;
|
|
}
|