Remove entity descriptions

#6627
This commit is contained in:
syuilo
2021-06-08 14:24:21 +09:00
parent 56600ba1df
commit 55c549a9f8
52 changed files with 1 additions and 249 deletions

View File

@@ -12,7 +12,6 @@ export const logSchema = {
total: {
type: 'number' as const,
optional: false as const, nullable: false as const,
description: 'フォローしている合計',
},
/**
@@ -21,7 +20,6 @@ export const logSchema = {
inc: {
type: 'number' as const,
optional: false as const, nullable: false as const,
description: 'フォローした数',
},
/**
@@ -30,7 +28,6 @@ export const logSchema = {
dec: {
type: 'number' as const,
optional: false as const, nullable: false as const,
description: 'フォロー解除した数',
},
}
},
@@ -48,7 +45,6 @@ export const logSchema = {
total: {
type: 'number' as const,
optional: false as const, nullable: false as const,
description: 'フォローされている合計',
},
/**
@@ -57,7 +53,6 @@ export const logSchema = {
inc: {
type: 'number' as const,
optional: false as const, nullable: false as const,
description: 'フォローされた数',
},
/**
@@ -66,7 +61,6 @@ export const logSchema = {
dec: {
type: 'number' as const,
optional: false as const, nullable: false as const,
description: 'フォロー解除された数',
},
}
},