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

@ -953,13 +953,13 @@ export const getFeatures = createSelector([
/** Fediverse backend */
interface Backend {
/** Build name, if this software is a fork */
build: string | null
build: string | null;
/** Name of the software */
software: string | null
software: string | null;
/** API version number */
version: string
version: string;
/** Mastodon API version this backend is compatible with */
compatVersion: string
compatVersion: string;
}
/** Get information about the software from its version string */