import { Oid } from './oid'; import { IndexEntry } from './index-entry'; import { Repository } from './repository'; import { Tree } from './tree'; import { Strarray } from './str-array'; export namespace Index { const enum ADD_OPTION { ADD_DEFAULT = 0, ADD_FORCE = 1, ADD_DISABLE_PATHSPEC_MATCH = 2, ADD_CHECK_PATHSPEC = 4, } const enum CAP { IGNORE_CASE = 1, NO_FILEMODE = 2, NO_SYMLINKS = 4, FROM_OWNER = -1, } } export class Index { static entryIsConflict(entry: IndexEntry): boolean; static entryStage(entry: IndexEntry): number; static open(indexPath: string): Promise; add(sourceEntry: IndexEntry): number; addAll(pathspec?: Strarray | string | string[], flags?: number, callback?: Function): Promise; addByPath(path: string): Promise; caps(): number; checksum(): Oid; clear(): number; conflictAdd(ancestorEntry: IndexEntry, ourEntry: IndexEntry, theirEntry: IndexEntry): number; conflictCleanup(): number; conflictGet(path: string): Promise; conflictRemove(path: string): number; entryCount(): number; getByIndex(n: number): IndexEntry; getByPath(path: string, stage?: number): IndexEntry; hasConflicts(): boolean; owner(): Repository; path(): string; read(force: number): number; readTree(tree: Tree): number; remove(path: string, stage: number): number; removeAll(pathspec: Strarray | string | string[], callback?: Function): Promise; removeByPath(path: string): Promise; removeDirectory(dir: string, stage: number): number; setCaps(caps: number): number; updateAll(pathspec: Strarray | string | string[], callback?: Function): Promise; write(): Promise; writeTree(): Promise; writeTreeTo(repo: Repository): Promise; entries(): IndexEntry[]; findPrefix(atPos: number, prefix: string): number; setVersion(version: number): number; version(): number; }