mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-01 02:46:20 +01:00
fix types
This commit is contained in:
parent
bed39b644d
commit
8454044642
1 changed files with 20 additions and 2 deletions
|
@ -6800,7 +6800,16 @@ export type operations = {
|
||||||
/** @description OK (with results) */
|
/** @description OK (with results) */
|
||||||
200: {
|
200: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['EmojiDetailed'][];
|
'application/json': ({
|
||||||
|
/** Format: id */
|
||||||
|
id: string;
|
||||||
|
aliases: string[];
|
||||||
|
name: string;
|
||||||
|
category: string | null;
|
||||||
|
/** @description The local host is represented with `null`. */
|
||||||
|
host: string | null;
|
||||||
|
url: string;
|
||||||
|
})[];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description Client error */
|
/** @description Client error */
|
||||||
|
@ -6860,7 +6869,16 @@ export type operations = {
|
||||||
/** @description OK (with results) */
|
/** @description OK (with results) */
|
||||||
200: {
|
200: {
|
||||||
content: {
|
content: {
|
||||||
'application/json': components['schemas']['EmojiDetailed'][];
|
'application/json': ({
|
||||||
|
/** Format: id */
|
||||||
|
id: string;
|
||||||
|
aliases: string[];
|
||||||
|
name: string;
|
||||||
|
category: string | null;
|
||||||
|
/** @description The local host is represented with `null`. The field exists for compatibility with other API endpoints that return files. */
|
||||||
|
host: string | null;
|
||||||
|
url: string;
|
||||||
|
})[];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/** @description Client error */
|
/** @description Client error */
|
||||||
|
|
Loading…
Reference in a new issue