cleaning unnecessary optionals

This commit is contained in:
tiagosiebler
2021-03-06 17:17:13 +00:00
parent 4adff7433f
commit b6a17dcffe
4 changed files with 4 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ export class LinearClient extends SharedEndpoints {
constructor(
key?: string | undefined,
secret?: string | undefined,
useLivenet?: boolean,
useLivenet: boolean = false,
restClientOptions: RestClientOptions = {},
requestOptions: AxiosRequestConfig = {}
) {