| 19 | } |
| 20 | |
| 21 | export interface StringAttributeSpec extends AttributeSpecBase<string> { |
| 22 | type: "string"; |
| 23 | } |
| 24 | |
| 25 | export interface BooleanAttributeSpec extends AttributeSpecBase<boolean> { |
| 26 | type: "boolean"; |
nothing calls this directly
no outgoing calls
no test coverage detected