PropertySignature is a field in an interface
| 22 | |
| 23 | // PropertySignature is a field in an interface |
| 24 | type PropertySignature struct { |
| 25 | // Name is the field name |
| 26 | Name string |
| 27 | Modifiers []Modifier |
| 28 | QuestionToken bool |
| 29 | Type ExpressionType |
| 30 | SupportComments |
| 31 | } |
| 32 | |
| 33 | func (*PropertySignature) isNode() {} |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected