fix(misskey-js): build misskey-js with types (#14665)

This commit is contained in:
かっこかり 2024-10-01 20:53:02 +09:00 committed by GitHub
parent b6578861ac
commit e9519b02fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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[];
};
};
};