fix(misskey-js): wrong hashtag channel param type (#14611)
This commit is contained in:
parent
76b9bc478a
commit
2c615357f2
|
@ -671,7 +671,7 @@ export type Channels = {
|
|||
};
|
||||
hashtag: {
|
||||
params: {
|
||||
q?: string;
|
||||
q: string[][];
|
||||
};
|
||||
events: {
|
||||
note: (payload: Note) => void;
|
||||
|
|
|
@ -124,7 +124,7 @@ export type Channels = {
|
|||
};
|
||||
hashtag: {
|
||||
params: {
|
||||
q?: string;
|
||||
q: string[][];
|
||||
};
|
||||
events: {
|
||||
note: (payload: Note) => void;
|
||||
|
|
Loading…
Reference in New Issue