* Get the current project
(options?: Options<ProjectCurrentData, ThrowOnError>)
| 257 | * Get the current project |
| 258 | */ |
| 259 | public current<ThrowOnError extends boolean = false>(options?: Options<ProjectCurrentData, ThrowOnError>) { |
| 260 | return (options?.client ?? this._client).get<ProjectCurrentResponses, unknown, ThrowOnError>({ |
| 261 | url: "/project/current", |
| 262 | ...options, |
| 263 | }) |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | class Pty extends _HeyApiClient { |
no test coverage detected