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
/
repo.ts
16 lines
(13 loc)
•
290 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
Selectable
}
from
"kysely"
;
export
interface
Repo
{
did
:
string
;
handle
:
string
;
ip
:
string
;
profile
:
string
;
indexedAt
:
string
;
email
:
string
;
emailConfirmedAt
:
string
|
null
;
threatSignatures
:
string
;
labels
:
string
; }
export
type
RepoRow
=
Selectable
<
Repo
>;