jointrashposs/types/instances-info.ts
2023-07-10 03:09:50 +09:00

47 lines
1.3 KiB
TypeScript

/** 各インスタンスの情報 */
export type InstanceItem = {
/** Hostname (e.g. `misskey.io`) */
url: string;
/** Name (e.g. `すしすきー`) */
name: string;
/** Language the API author aqz set manually (e.g. `["ja"]`, `["zh"]`) */
langs: string[],
/** `meta.description` or the the API author aqz set manually */
description: string | null;
/** `true` only */
isAlive: true,
/** The server Value calculated from the version, etc. */
value: number,
/** Banner existance */
banner: boolean;
/** Background Image existance */
background: boolean;
/** Icon Image existance */
icon: boolean;
/** nodeinfo */
nodeinfo: Record<string, any> | null,
/** result of api/meta */
meta: Record<string, any> | null,
stats?: Record<string, any>, // deprecated (result of api/stats)
};
/** JSON Object Returned from `joinmisskey/api`. */
export type InstanceInfo = {
/** The date instances.json was published at. */
date: string;
/** Statistics */
stats: {
/** Total notes */
notesCount: number;
/** Total Users */
usersCount: number;
/** Total MAUs */
mau: number;
/** Servers counter */
instancesCount: number;
},
/** Instance List */
instancesInfos: InstanceItem[];
}