1 | import { Oid } from "./oid";
|
2 |
|
3 | export class DiffFile {
|
4 | /**
|
5 | * Returns the file's flags
|
6 | */
|
7 | flags(): number;
|
8 | /**
|
9 | * Returns the file's Oid
|
10 | */
|
11 | id(): Oid;
|
12 | /**
|
13 | * Returns the file's mode
|
14 | */
|
15 | mode(): number;
|
16 | /**
|
17 | * Returns the file's path
|
18 | */
|
19 | path(): string;
|
20 | /**
|
21 | * Returns the file's size
|
22 | */
|
23 | size(): number;
|
24 | }
|