initial generation

This commit is contained in:
Luke Hagar
2025-05-16 17:01:58 -05:00
parent a151324ae9
commit 5994271d04
690 changed files with 61620 additions and 0 deletions

21
USAGE.md Normal file
View File

@@ -0,0 +1,21 @@
<!-- Start SDK Example Usage [usage] -->
```typescript
import { Prowlarr } from "prowlarr";
const prowlarr = new Prowlarr({
security: {
xApiKey: process.env["PROWLARR_X_API_KEY"] ?? "",
},
});
async function run() {
const result = await prowlarr.apiInfo.getApi();
// Handle the result
console.log(result);
}
run();
```
<!-- End SDK Example Usage [usage] -->