tangled
alpha
login
or
join now
isuggest.selfce.st
/
strand
3
fork
atom
alternative tangled frontend (extremely wip)
3
fork
atom
overview
issues
pulls
pipelines
feat: tangled follow lexicon
serenity
1 week ago
9e560ee0
ef7b899a
+9
1 changed file
expand all
collapse all
unified
split
src
lib
types
lexicons
sh
tangled
graph
follow.ts
+9
src/lib/types/lexicons/sh/tangled/graph/follow.ts
···
0
0
0
0
0
0
0
0
0
···
1
+
import { z } from "zod/v4";
2
+
3
+
export const shTangledGraphFollowSchema = z.object({
4
+
$type: z.literal("sh.tangled.graph.follow"),
5
+
subject: z.string(),
6
+
createdAt: z.iso.datetime({ offset: true }).optional(),
7
+
});
8
+
9
+
export type ShTangledGraphFollow = z.infer<typeof shTangledGraphFollowSchema>;