mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-14 01:30:13 +00:00
fix: fix typing for privacy interface
This commit is contained in:
parent
b21e65f318
commit
6deb792afa
1 changed files with 7 additions and 7 deletions
|
|
@ -1,11 +1,11 @@
|
||||||
interface MemberPrivacy {
|
interface MemberPrivacy {
|
||||||
visibility?: string | boolean | null,
|
visibility?: string,
|
||||||
description_privacy?: string | boolean | null,
|
description_privacy?: string,
|
||||||
name_privacy?: string | boolean | null,
|
name_privacy?: string,
|
||||||
birthday_privacy?: string | boolean | null,
|
birthday_privacy?: string,
|
||||||
pronoun_privacy?: string | boolean | null,
|
pronoun_privacy?: string,
|
||||||
avatar_privacy?: string | boolean | null,
|
avatar_privacy?: string,
|
||||||
metadata_privacy?: string | boolean | null
|
metadata_privacy?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class Member {
|
export default class Member {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue