1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Chore: Resolves #8360: Use @typescript-eslint/indent for TypeScript files (#8367)

This commit is contained in:
Henry Heino
2023-07-06 11:17:41 -07:00
committed by GitHub
parent e21a5c1b80
commit 28923a69b2
19 changed files with 114 additions and 105 deletions

View File

@@ -3,8 +3,8 @@ const { useCallback, useEffect, useState } = shim.react();
import useEventListener from './useEventListener';
interface Size {
width: number;
height: number;
width: number;
height: number;
}
function useElementSize(elementRef: any): Size {