Open mpayu2 opened 1 year ago
typeの定義はconstの定義と分けて上の方に定義すると可読性が上がりそうです。 現状、ほとんどの箇所はすでにそうなっていそうです。
const NORMAL_CODE = 'NORMAL' const ERROR_CODE = 'ERROR' type StateType = { isGet: boolean; errorCode: typeof Errors[number] | undefined; executeAtSuccess?: () => void } export const useCustomHook = () => {
type StateType = { isGet: boolean; errorCode: typeof Errors[number] | undefined; executeAtSuccess?: () => void } const NORMAL_CODE = 'NORMAL' const ERROR_CODE = 'ERROR' export const useCustomHook = () => {
内容
typeの定義はconstの定義と分けて上の方に定義すると可読性が上がりそうです。 現状、ほとんどの箇所はすでにそうなっていそうです。
例
未適用
適用