mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
25 lines
387 B
TypeScript
25 lines
387 B
TypeScript
import { Oid } from './oid';
|
|
|
|
export class DiffFile {
|
|
/**
|
|
* Returns the file's flags
|
|
*/
|
|
flags(): number;
|
|
/**
|
|
* Returns the file's Oid
|
|
*/
|
|
id(): Oid;
|
|
/**
|
|
* Returns the file's mode
|
|
*/
|
|
mode(): number;
|
|
/**
|
|
* Returns the file's path
|
|
*/
|
|
path(): string;
|
|
/**
|
|
* Returns the file's size
|
|
*/
|
|
size(): number;
|
|
}
|