From 6deb792afa5c08371f40b41297edf06a8b4fa225 Mon Sep 17 00:00:00 2001 From: Spectralitree <72747870+Spectralitree@users.noreply.github.com> Date: Thu, 30 Dec 2021 10:18:39 +0100 Subject: [PATCH] fix: fix typing for privacy interface --- src/api/member.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/api/member.ts b/src/api/member.ts index c9b65cd1..066db7ac 100644 --- a/src/api/member.ts +++ b/src/api/member.ts @@ -1,11 +1,11 @@ interface MemberPrivacy { - visibility?: string | boolean | null, - description_privacy?: string | boolean | null, - name_privacy?: string | boolean | null, - birthday_privacy?: string | boolean | null, - pronoun_privacy?: string | boolean | null, - avatar_privacy?: string | boolean | null, - metadata_privacy?: string | boolean | null + visibility?: string, + description_privacy?: string, + name_privacy?: string, + birthday_privacy?: string, + pronoun_privacy?: string, + avatar_privacy?: string, + metadata_privacy?: string } export default class Member {