hi im alinez not even tryingto hide it
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix dhe lebel

adam f4168a96 c800d4aa

+7 -3
+2
src/index.ts
··· 1 1 import { encode as cborEncode } from "@atcute/cbor"; 2 + 3 + import { LabelRow, LabelFrameLabel, OpCode } from "./types.ts"; 2 4 import { LABELS } from "./labels.ts"; 3 5 4 6 export interface Env {}
+2
src/labels.ts
··· 1 + import { LabelRow } from "./types.ts"; 2 + 1 3 export const LABELS: LabelRow[] = [ 2 4 { 3 5 id: 11,
+3 -3
src/types.ts
··· 1 1 import type { At } from "@atcute/client/lexicons"; 2 2 3 - interface LabelRow { 3 + export interface LabelRow { 4 4 id: number; 5 5 uri: string; 6 6 val: string; ··· 9 9 cid?: At.CID; 10 10 } 11 11 12 - interface LabelFrameLabel { 12 + export interface LabelFrameLabel { 13 13 ver: number; 14 14 src: At.DID; 15 15 cid?: At.CID; ··· 20 20 sig: { $bytes: string }; 21 21 } 22 22 23 - const enum OpCode { 23 + export const enum OpCode { 24 24 Error = -1, 25 25 Message = 1, 26 26 }