* Find files
(options: Options<FindFilesData, ThrowOnError>)
| 788 | * Find files |
| 789 | */ |
| 790 | public files<ThrowOnError extends boolean = false>(options: Options<FindFilesData, ThrowOnError>) { |
| 791 | return (options.client ?? this._client).get<FindFilesResponses, unknown, ThrowOnError>({ |
| 792 | url: "/find/file", |
| 793 | ...options, |
| 794 | }) |
| 795 | } |
| 796 | |
| 797 | /** |
| 798 | * Find workspace symbols |
no test coverage detected