| 660 | } |
| 661 | |
| 662 | export interface ThingDescription { |
| 663 | id: string; |
| 664 | title: string; |
| 665 | name: string; |
| 666 | href: string; |
| 667 | '@context': string; |
| 668 | '@type': string[]; |
| 669 | properties: { [name: string]: Property.PropertyDescription }; |
| 670 | links: Link[]; |
| 671 | actions: {[name: string]: Action.ActionMetadata}; |
| 672 | events: {[name: string]: Event.EventMetadata}; |
| 673 | description?: string; |
| 674 | base?: string |
| 675 | securityDefinitions?: {[security: string]: SecurityScheme} |
| 676 | security?: string |
| 677 | } |
| 678 | } |
| 679 | |
| 680 | export = Thing; |
nothing calls this directly
no outgoing calls
no test coverage detected