mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-03-29 08:58:23 +08:00
8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import { DiffDelta } from './diff-delta';
|
|
|
|
export class StatusEntry {
|
|
status(): number;
|
|
headToIndex(): DiffDelta;
|
|
indexToWorkdir(): DiffDelta;
|
|
}
|