File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
export class SignatureValidationFailed extends Error {
2
- constructor ( message : string , public signature ?: string ) {
2
+ constructor (
3
+ message : string ,
4
+ public signature ?: string ,
5
+ ) {
3
6
super ( message ) ;
4
7
}
5
8
}
6
9
7
10
export class JSONParseError extends Error {
8
- constructor ( message : string , public raw : any ) {
11
+ constructor (
12
+ message : string ,
13
+ public raw : any ,
14
+ ) {
9
15
super ( message ) ;
10
16
}
11
17
}
Original file line number Diff line number Diff line change @@ -2839,12 +2839,12 @@ export type VerifyIDToken = {
2839
2839
/**
2840
2840
* Response body of get group summary.
2841
2841
*
2842
- * @see [Get group summary](https://developers.line.biz/ja /reference/messaging-api/#get-group-summary)
2842
+ * @see [Get group summary](https://developers.line.biz/en /reference/messaging-api/#get-group-summary)
2843
2843
*/
2844
2844
export type GroupSummaryResponse = {
2845
2845
groupId : string ;
2846
2846
groupName : string ;
2847
- pictureUrl : string ;
2847
+ pictureUrl ? : string ;
2848
2848
} ;
2849
2849
2850
2850
/**
You can’t perform that action at this time.
0 commit comments