class DocEntry extends Schema.Class < DocEntry > ("DocEntry")({
_tag: Schema.String,
module: Schema.Struct({
name: Schema.String,
}),
project: Schema.String,
name: Schema.String,
description: Schema.optionalWith(Schema.String, {
as: "Option",
nullable: true,
}),
deprecated: Schema.Boolean,
examples: Schema.Array(Schema.String),
since: Schema.String,
category: Schema.optionalWith(Schema.String, {
as: "Option",
nullable: true,
}),
signature: Schema.optionalWith(Schema.String, {
as: "Option",
nullable: true,
}),
sourceUrl: Schema.String,
}) {
static readonly Array = Schema.Array(this)
static readonly decode = Schema.decodeUnknown(this)
static readonly decodeArray = Schema.decodeUnknown(this.Array)
}
class DocEntry extends Schema.Class < DocEntry > ("DocEntry")({
_tag: Schema.String,
module: Schema.Struct({
name: Schema.String,
}),
project: Schema.String,
name: Schema.String,
description: Schema.optionalWith(Schema.String, {
as: "Option",
nullable: true,
}),
deprecated: Schema.Boolean,
examples: Schema.Array(Schema.String),
since: Schema.String,
category: Schema.optionalWith(Schema.String, {
as: "Option",
nullable: true,
}),
signature: Schema.optionalWith(Schema.String, {
as: "Option",
nullable: true,
}),
sourceUrl: Schema.String,
}) {
static readonly Array = Schema.Array(this)
static readonly decode = Schema.decodeUnknown(this)
static readonly decodeArray = Schema.decodeUnknown(this.Array)
}