From 2cb2d4f2868f63961b368c153c1f9a8964ed3cfa Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Tue, 15 Oct 2024 10:21:21 +0200 Subject: [PATCH] add file --- src/types/PendingFollow.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/types/PendingFollow.ts diff --git a/src/types/PendingFollow.ts b/src/types/PendingFollow.ts new file mode 100644 index 0000000..0c2b964 --- /dev/null +++ b/src/types/PendingFollow.ts @@ -0,0 +1,7 @@ +// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. +import type { Person } from "./Person"; + +export interface PendingFollow { + person: Person; + is_new_instance: boolean; +}