eslint: use semicolon TypeScript delimeter

This commit is contained in:
Alex Gleason
2023-10-02 13:54:02 -05:00
parent 702124fb79
commit 645ce60a5f
479 changed files with 1928 additions and 1938 deletions

View File

@ -3,13 +3,13 @@ import { queryClient } from 'soapbox/queries/client';
import type { InfiniteData, QueryKey } from '@tanstack/react-query';
export interface PaginatedResult<T> {
result: T[]
hasMore: boolean
link?: string
result: T[];
hasMore: boolean;
link?: string;
}
interface Entity {
id: string
id: string;
}
const isEntity = <T = unknown>(object: T): object is T & Entity => {