* Convert to JSON representation
()
| 113 | * Convert to JSON representation |
| 114 | */ |
| 115 | toJSON(): object { |
| 116 | return { |
| 117 | scheme: this.scheme, |
| 118 | authority: this.authority, |
| 119 | path: this.path, |
| 120 | query: this.query, |
| 121 | fragment: this.fragment, |
| 122 | } |
| 123 | } |
| 124 | } |