fix(misskey-js): build misskey-js with types (#14665)
This commit is contained in:
parent
b6578861ac
commit
e9519b02fb
|
@ -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 New Issue