diff options
Diffstat (limited to 'src/util/schemas/RelationshipPutSchema.ts')
-rw-r--r-- | src/util/schemas/RelationshipPutSchema.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/util/schemas/RelationshipPutSchema.ts b/src/util/schemas/RelationshipPutSchema.ts new file mode 100644 index 00000000..0a7f9720 --- /dev/null +++ b/src/util/schemas/RelationshipPutSchema.ts @@ -0,0 +1,5 @@ +import { RelationshipType } from "@fosscord/util"; + +export interface RelationshipPutSchema { + type?: RelationshipType; +} |