Skip to content

Commit 972c283

Browse files
author
Hyunje Jun
committed
Lint fix with the latest TSLint
1 parent d02a1f6 commit 972c283

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/client.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ export default class Client {
1515

1616
public pushMessage(to: string, messages: Line.Message | Line.Message[]): Promise<any> {
1717
return this.post(URL.push, {
18-
to,
1918
messages: toArray(messages),
19+
to,
2020
});
2121
}
2222

2323
public replyMessage(replyToken: string, messages: Line.Message | Line.Message[]): Promise<any> {
2424
return this.post(URL.reply, {
25-
replyToken,
2625
messages: toArray(messages),
26+
replyToken,
2727
});
2828
}
2929

3030
public multicast(to: string[], messages: Line.Message | Line.Message[]): Promise<any> {
3131
return this.post(URL.multicast, {
32-
to,
3332
messages: toArray(messages),
33+
to,
3434
});
3535
}
3636

0 commit comments

Comments
 (0)