类型别名: JudgementTarget
ts
type JudgementTarget =
| {
judgement: StandardJudgement;
noteType: StandardNoteType;
}
| {
judgement: BreakJudgement;
noteType: "break";
};定义于: models.ts:20
待求解的 Note 类型与判定。
联合成员
类型字面量
ts
{
judgement: StandardJudgement;
noteType: StandardNoteType;
}| 名称 | 类型 | 描述 | 定义于 |
|---|---|---|---|
judgement | StandardJudgement | 该类型中需要计算剩余容错的判定。 | models.ts:25 |
noteType | StandardNoteType | 普通 Note 类型。 | models.ts:23 |
类型字面量
ts
{
judgement: BreakJudgement;
noteType: "break";
}| 名称 | 类型 | 描述 | 定义于 |
|---|---|---|---|
judgement | BreakJudgement | Break 细分判定。 | models.ts:31 |
noteType | "break" | Break Note。 | models.ts:29 |
