Introduce prettier

This commit is contained in:
Takeshi Kimata
2024-05-19 21:04:45 +09:00
parent cbb5993276
commit 75eeebefda
89 changed files with 872 additions and 944 deletions

View File

@@ -1,4 +1,4 @@
import { CaseType } from "./case";
import { CaseType } from './case';
export type FolderType = {
id: number;

View File

@@ -1,4 +1,4 @@
import {SVGProps} from "react";
import { SVGProps } from 'react';
export type IconSvgProps = SVGProps<SVGSVGElement> & {
size?: number;

View File

@@ -1,5 +1,5 @@
import { FolderType } from "./folder";
import { RunType } from "./run";
import { FolderType } from './folder';
import { RunType } from './run';
export type ProjectType = {
id: number;

View File

@@ -29,10 +29,10 @@ type RunStatusCountType = {
type ProgressSeriesType = {
name: string;
data: number[];
}
};
type RunsMessages = {
runList: string,
runList: string;
id: string;
name: string;
description: string;
@@ -44,11 +44,11 @@ type RunsMessages = {
};
type RunMessages = {
backToRuns: string,
backToRuns: string;
updating: string;
update: string;
progress: string,
refresh: string,
progress: string;
refresh: string;
id: string;
title: string;
pleaseEnter: string;
@@ -78,12 +78,4 @@ type RunMessages = {
noCasesFound: string;
};
export {
RunType,
RunCaseType,
RunCaseInfoType,
RunStatusCountType,
ProgressSeriesType,
RunsMessages,
RunMessages,
};
export { RunType, RunCaseType, RunCaseInfoType, RunStatusCountType, ProgressSeriesType, RunsMessages, RunMessages };