类型别名 ESJTimeIntervalCollectionJsonType
ESJTimeIntervalCollectionJsonType:
| {
iso8601: string;
isStartIncluded?: boolean;
isStopIncluded?: boolean;
leadingInterval?: boolean;
trailingInterval?: boolean;
type: "fromIso8601";
}
| {
iso8601Dates?: string[];
isStartIncluded?: boolean;
isStopIncluded?: boolean;
leadingInterval?: boolean;
trailingInterval?: boolean;
type: "fromIso8601DateArray";
}
类型声明
- {
iso8601: string;
isStartIncluded?: boolean;
isStopIncluded?: boolean;
leadingInterval?: boolean;
trailingInterval?: boolean;
type: "fromIso8601";
}iso8601: string
可选isStartIncluded?: boolean
可选isStopIncluded?: boolean
可选leadingInterval?: boolean
可选trailingInterval?: boolean
type: "fromIso8601"
- {
iso8601Dates?: string[];
isStartIncluded?: boolean;
isStopIncluded?: boolean;
leadingInterval?: boolean;
trailingInterval?: boolean;
type: "fromIso8601DateArray";
}可选iso8601Dates?: string[]
可选isStartIncluded?: boolean
可选isStopIncluded?: boolean
可选leadingInterval?: boolean
可选trailingInterval?: boolean
type: "fromIso8601DateArray"
表示时间间隔集合的 JSON 类型。 可以是从 ISO 8601 字符串创建的时间间隔集合, 也可以是从 ISO 8601 日期数组创建的时间间隔集合。