use waitForPageLoad inall examples

This commit is contained in:
Tommy D. Rossi
2026-01-25 13:48:04 +01:00
parent 28f5734b31
commit 26a353e3bc
5 changed files with 54 additions and 9 deletions
+23
View File
@@ -586,3 +586,26 @@ const jsonSchema = toJSONSchema(mySchema, {
```
github.md
<!-- opensrc:start -->
## Source Code Reference
Source code for dependencies is available in `opensrc/` for deeper understanding of implementation details.
See `opensrc/sources.json` for the list of available packages and their versions.
Use this source code when you need to understand how a package works internally, not just its types/interface.
### Fetching Additional Source Code
To fetch source code for a package or repository you need to understand, run:
```bash
npx opensrc <package> # npm package (e.g., npx opensrc zod)
npx opensrc pypi:<package> # Python package (e.g., npx opensrc pypi:requests)
npx opensrc crates:<package> # Rust crate (e.g., npx opensrc crates:serde)
npx opensrc <owner>/<repo> # GitHub repo (e.g., npx opensrc vercel/ai)
```
<!-- opensrc:end -->