UNPKG
auron
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Interact with your ATProto labeler from your terminal
auron
/
src
/
schemas
/
record.ts
13 lines
(11 loc)
•
233 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
Selectable
}
from
"kysely"
;
export
interface
Record
{
uri
:
string
;
cid
:
string
;
value
:
string
;
blobCids
:
string
;
indexedAt
:
string
;
blobs
:
string
;
labels
:
string
; }
export
type
RecordRow
=
Selectable
<
Record
>;