diff options
author | Vika <vika@fireburn.ru> | 2024-01-29 07:08:21 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-01-29 07:08:21 +0300 |
commit | d36014200549cf73a7f22c6f94fb15bec17823e8 (patch) | |
tree | 6e56f912219c5d20e2768b1f016f23fff22fe83e /companion-lite/src | |
parent | ed51d48f7353a5ceefa798ded52d3af465d4d0ec (diff) | |
download | kittybox-d36014200549cf73a7f22c6f94fb15bec17823e8.tar.zst |
lint: no extra whitespace on line endings
Diffstat (limited to 'companion-lite/src')
-rw-r--r-- | companion-lite/src/indieauth.ts | 2 | ||||
-rw-r--r-- | companion-lite/src/micropub_api.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/companion-lite/src/indieauth.ts b/companion-lite/src/indieauth.ts index 40facab..31854ee 100644 --- a/companion-lite/src/indieauth.ts +++ b/companion-lite/src/indieauth.ts @@ -45,7 +45,7 @@ export interface IndiewebEndpoints { userinfo_endpoint: URL | null, revocation_endpoint: URL | null, micropub: URL, - + } export function create_verifier() { diff --git a/companion-lite/src/micropub_api.ts b/companion-lite/src/micropub_api.ts index fa1c431..c863256 100644 --- a/companion-lite/src/micropub_api.ts +++ b/companion-lite/src/micropub_api.ts @@ -44,7 +44,7 @@ export class Micropub { readonly token: string readonly micropub_endpoint: URL private config_response: MicropubConfig | null - + constructor({ endpoint, token }: { endpoint: URL, token: string }) { this.micropub_endpoint = endpoint; this.token = token; |