UNPKG

@kobold/core

Version:

Kobold core

13 lines (12 loc) 315 B
/// <reference types="node" /> import { Path } from './path'; export declare class Repository { private readonly path; private readonly name; private readonly categories; constructor(opts: { path: string; name: string; }); getFile(path: Path): Promise<Buffer>; }