28 lines
600 B
TypeScript
28 lines
600 B
TypeScript
/// <reference path="account.ts" />
|
|
/// <reference path="urls.ts" />
|
|
/// <reference path="stats.ts" />
|
|
|
|
namespace FriendicaEntity {
|
|
export type Instance = {
|
|
uri: string
|
|
title: string
|
|
description: string
|
|
email: string
|
|
version: string
|
|
thumbnail: string | null
|
|
urls: URLs | null
|
|
stats: Stats
|
|
languages: Array<string>
|
|
registrations: boolean
|
|
approval_required: boolean
|
|
invites_enabled: boolean
|
|
max_toot_chars: number
|
|
contact_account: Account
|
|
rules: Array<InstanceRule>
|
|
}
|
|
|
|
export type InstanceRule = {
|
|
id: string
|
|
text: string
|
|
}
|
|
}
|