mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 17:15:13 +00:00
fix(misskey-js): wrong hashtag channel param type (#14611)
This commit is contained in:
parent
76b9bc478a
commit
2c615357f2
2 changed files with 2 additions and 2 deletions
|
@ -671,7 +671,7 @@ export type Channels = {
|
||||||
};
|
};
|
||||||
hashtag: {
|
hashtag: {
|
||||||
params: {
|
params: {
|
||||||
q?: string;
|
q: string[][];
|
||||||
};
|
};
|
||||||
events: {
|
events: {
|
||||||
note: (payload: Note) => void;
|
note: (payload: Note) => void;
|
||||||
|
|
|
@ -124,7 +124,7 @@ export type Channels = {
|
||||||
};
|
};
|
||||||
hashtag: {
|
hashtag: {
|
||||||
params: {
|
params: {
|
||||||
q?: string;
|
q: string[][];
|
||||||
};
|
};
|
||||||
events: {
|
events: {
|
||||||
note: (payload: Note) => void;
|
note: (payload: Note) => void;
|
||||||
|
|
Loading…
Reference in a new issue