diff options
Diffstat (limited to 'js.go')
| -rw-r--r-- | js.go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -18,6 +18,13 @@ import ( type Config []byte +type ScrapeParams struct { + HTML string + URL string +} + +type ScrapeFunc func(ScrapeParams) (any, error) + type TransformError struct { Line int Column int |