1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-24 15:04:07 +02:00

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

This commit is contained in:
かっこかり
2025-06-04 11:49:29 +09:00
committed by GitHub
parent 3a4288fe24
commit d94bdff639
3 changed files with 65 additions and 0 deletions

View File

@@ -1710,6 +1710,17 @@ declare module '../api.js' {
credential?: string | null,
): Promise<SwitchCaseResponseType<E, P>>;
/**
* No description provided.
*
* **Credential required**: *Yes* / **Permission**: *write:chat*
*/
request<E extends 'chat/read-all', P extends Endpoints[E]['req']>(
endpoint: E,
params: P,
credential?: string | null,
): Promise<SwitchCaseResponseType<E, P>>;
/**
* No description provided.
*