UNPKG

@firfi/quint-connect

Version:

Model-based testing framework connecting Quint specifications to TypeScript implementations

12 lines 379 B
import { Schema } from "effect"; export class QuintError extends Schema.TaggedError()("QuintError", { message: Schema.String, stderr: Schema.optional(Schema.String), exitCode: Schema.optional(Schema.Number) }) { } export class QuintNotFoundError extends Schema.TaggedError()("QuintNotFoundError", { message: Schema.String }) { } //# sourceMappingURL=errors.js.map