···11+export * as AppWafrnActorDefs from "./types/app/wafrn/actor/defs.js";
22+export * as AppWafrnActorGetProfiles from "./types/app/wafrn/actor/getProfiles.js";
33+export * as AppWafrnActorProfile from "./types/app/wafrn/actor/profile.js";
14export * as AppWafrnContentCachePost from "./types/app/wafrn/content/cachePost.js";
25export * as AppWafrnContentDefs from "./types/app/wafrn/content/defs.js";
36export * as AppWafrnContentGetFeed from "./types/app/wafrn/content/getFeed.js";
47export * as AppWafrnContentPrivatePost from "./types/app/wafrn/content/privatePost.js";
58export * as AppWafrnContentPublicPost from "./types/app/wafrn/content/publicPost.js";
99+export * as AppWafrnGraphCacheFollow from "./types/app/wafrn/graph/cacheFollow.js";
1010+export * as AppWafrnGraphDeleteFollow from "./types/app/wafrn/graph/deleteFollow.js";
1111+export * as AppWafrnGraphFollow from "./types/app/wafrn/graph/follow.js";
1212+export * as AppWafrnGraphGetFollowers from "./types/app/wafrn/graph/getFollowers.js";
1313+export * as AppWafrnGraphGetFollows from "./types/app/wafrn/graph/getFollows.js";
1414+export * as ComAtprotoRepoStrongRef from "./types/com/atproto/repo/strongRef.js";
+30
packages/lexicon/types/app/bsky/graph/follow.ts
···11+import type {} from "@atcute/lexicons";
22+import * as v from "@atcute/lexicons/validations";
33+import type {} from "@atcute/lexicons/ambient";
44+import * as ComAtprotoRepoStrongRef from "../../../com/atproto/repo/strongRef.js";
55+66+const _mainSchema = /*#__PURE__*/ v.record(
77+ /*#__PURE__*/ v.tidString(),
88+ /*#__PURE__*/ v.object({
99+ $type: /*#__PURE__*/ v.literal("app.bsky.graph.follow"),
1010+ createdAt: /*#__PURE__*/ v.datetimeString(),
1111+ subject: /*#__PURE__*/ v.didString(),
1212+ get via() {
1313+ return /*#__PURE__*/ v.optional(ComAtprotoRepoStrongRef.mainSchema);
1414+ },
1515+ }),
1616+);
1717+1818+type main$schematype = typeof _mainSchema;
1919+2020+export interface mainSchema extends main$schematype {}
2121+2222+export const mainSchema = _mainSchema as mainSchema;
2323+2424+export interface Main extends v.InferInput<typeof mainSchema> {}
2525+2626+declare module "@atcute/lexicons/ambient" {
2727+ interface Records {
2828+ "app.bsky.graph.follow": mainSchema;
2929+ }
3030+}