fix: add more explicit return types (#49567)

pull/49598/head
Oliver Eyton-Williams 2023-03-02 18:26:40 +01:00 committed by GitHub
parent 5528ec39a2
commit 66438c271f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ export async function auth0Verify(
this: FastifyInstance,
request: FastifyRequest,
reply: FastifyReply
) {
): Promise<void> {
await this.authenticate(request, reply);
}
@ -16,7 +16,7 @@ export function testMiddleware(
req: MiddieRequest,
res: MiddieResponse,
next: NextFunction
) {
): void {
console.log('Test middleware running');
console.log(req.headers);
console.log(req.query);

View File

@ -1,6 +1,6 @@
import { randomBytes, createHash } from 'crypto';
export function base64URLEncode(buf: Buffer) {
export function base64URLEncode(buf: Buffer): string {
return buf
.toString('base64')
.replace(/\+/g, '-')

View File

@ -72,7 +72,7 @@ export class Header extends React.Component<
}
// elementToFocus must be a link in the language menu
showLanguageMenu(elementToFocus: HTMLButtonElement | null) {
showLanguageMenu(elementToFocus: HTMLButtonElement | null): void {
this.setState({ isLanguageMenuDisplayed: true }, () =>
elementToFocus?.focus()
);