(this: Schema.Top, annotations: Schema.Annotations.Key<unknown>)
| 55 | return this.rebuild(SchemaAST.annotate(this.ast, annotations)) |
| 56 | }, |
| 57 | annotateKey(this: Schema.Top, annotations: Schema.Annotations.Key<unknown>) { |
| 58 | return this.rebuild(SchemaAST.annotateKey(this.ast, annotations)) |
| 59 | }, |
| 60 | check(this: Schema.Top, ...checks: readonly [SchemaAST.Check<unknown>, ...Array<SchemaAST.Check<unknown>>]) { |
| 61 | return this.rebuild(SchemaAST.appendChecks(this.ast, checks)) |
| 62 | } |
nothing calls this directly
no test coverage detected