fix(misskey-js): wrong hashtag channel param type (#14611)

This commit is contained in:
zyoshoka 2024-09-23 09:53:50 +09:00 committed by GitHub
parent 76b9bc478a
commit 2c615357f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -671,7 +671,7 @@ export type Channels = {
};
hashtag: {
params: {
q?: string;
q: string[][];
};
events: {
note: (payload: Note) => void;

View file

@ -124,7 +124,7 @@ export type Channels = {
};
hashtag: {
params: {
q?: string;
q: string[][];
};
events: {
note: (payload: Note) => void;