UNPKG
@kobold/core
Version:
latest (0.0.2)
0.0.2
0.0.1
Kobold core
ackwell/kobold
@kobold/core
/
dist
/
repository.d.ts
13 lines
(12 loc)
•
315 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/// <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
>; }