Merge pull request #37 from h3poteto/types/instance

Add max_toot_chars and registrations to Instance
This commit is contained in:
AkiraFukushima 2019-04-07 20:46:24 +09:00 committed by GitHub
commit 79444417ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,6 +12,8 @@ export default interface Instance {
urls: URLs,
stats: Stats,
languages: string[],
contact_account: Account | null
contact_account: Account | null,
max_toot_chars?: number,
registrations?: boolean
}