mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-11-21 19:57:05 +01:00
fix(misskey-js): build misskey-js with types (#14665)
This commit is contained in:
parent
b6578861ac
commit
e9519b02fb
1 changed files with 5 additions and 0 deletions
|
@ -5177,6 +5177,8 @@ export type operations = {
|
|||
urlPreviewRequireContentLength: boolean;
|
||||
urlPreviewUserAgent: string | null;
|
||||
urlPreviewSummaryProxyUrl: string | null;
|
||||
federation: string;
|
||||
federationHosts: string[];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -9428,6 +9430,9 @@ export type operations = {
|
|||
urlPreviewRequireContentLength?: boolean;
|
||||
urlPreviewUserAgent?: string | null;
|
||||
urlPreviewSummaryProxyUrl?: string | null;
|
||||
/** @enum {string} */
|
||||
federation?: 'all' | 'none' | 'specified';
|
||||
federationHosts?: string[];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue