-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtypedoc.json
More file actions
79 lines (79 loc) · 5.26 KB
/
typedoc.json
File metadata and controls
79 lines (79 loc) · 5.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": ["./src/index.ts", "./src/experimental/index.ts"],
"out": "docs",
"plugin": [],
"navigation": {
"includeCategories": true
},
"defaultCategory": "other",
"categoryOrder": ["model", "tag", "type", "error", "util", "other"],
"readme": "./README.md",
"externalSymbolLinkMappings": {
"effect": {
"Effect": "https://effect-ts.github.io/effect/effect/Effect.ts.html#effect-interface"
},
"playwright-core": {
"Page": "https://playwright.dev/docs/api/class-page",
"Locator": "https://playwright.dev/docs/api/class-locator",
"Browser": "https://playwright.dev/docs/api/class-browser",
"BrowserContext": "https://playwright.dev/docs/api/class-browsercontext",
"ElementHandle": "https://playwright.dev/docs/api/class-elementhandle",
"Frame": "https://playwright.dev/docs/api/class-frame",
"FrameLocator": "https://playwright.dev/docs/api/class-framelocator",
"Worker": "https://playwright.dev/docs/api/class-worker",
"Response": "https://playwright.dev/docs/api/class-response",
"Request": "https://playwright.dev/docs/api/class-request",
"Route": "https://playwright.dev/docs/api/class-route",
"WebSocket": "https://playwright.dev/docs/api/class-websocket",
"CDPSession": "https://playwright.dev/docs/api/class-cdpsession",
"ConsoleMessage": "https://playwright.dev/docs/api/class-consolemessage",
"Dialog": "https://playwright.dev/docs/api/class-dialog",
"Download": "https://playwright.dev/docs/api/class-download",
"FileChooser": "https://playwright.dev/docs/api/class-filechooser",
"JSHandle": "https://playwright.dev/docs/api/class-jshandle",
"Keyboard": "https://playwright.dev/docs/api/class-keyboard",
"Mouse": "https://playwright.dev/docs/api/class-mouse",
"Touchscreen": "https://playwright.dev/docs/api/class-touchscreen",
"Selectors": "https://playwright.dev/docs/api/class-selectors",
"Video": "https://playwright.dev/docs/api/class-video",
"Page.goto": "https://playwright.dev/docs/api/class-page#page-goto",
"Page.evaluate": "https://playwright.dev/docs/api/class-page#page-evaluate",
"Page.title": "https://playwright.dev/docs/api/class-page#page-title",
"Page.locator": "https://playwright.dev/docs/api/class-page#page-locator",
"Page.url": "https://playwright.dev/docs/api/class-page#page-url",
"Page.click": "https://playwright.dev/docs/api/class-page#page-click",
"Page.waitForURL": "https://playwright.dev/docs/api/class-page#page-wait-for-url",
"Page.getByRole": "https://playwright.dev/docs/api/class-page#page-get-by-role",
"Page.getByText": "https://playwright.dev/docs/api/class-page#page-get-by-text",
"Page.getByLabel": "https://playwright.dev/docs/api/class-page#page-get-by-label",
"Page.getByTestId": "https://playwright.dev/docs/api/class-page#page-get-by-test-id",
"Page.reload": "https://playwright.dev/docs/api/class-page#page-reload",
"Page.close": "https://playwright.dev/docs/api/class-page#page-close",
"Page.on": "https://playwright.dev/docs/api/class-page#page-on",
"Browser.newPage": "https://playwright.dev/docs/api/class-browser#browser-new-page",
"Browser.close": "https://playwright.dev/docs/api/class-browser#browser-close",
"Browser.contexts": "https://playwright.dev/docs/api/class-browser#browser-contexts",
"Browser.browserType": "https://playwright.dev/docs/api/class-browser#browser-browser-type",
"Browser.version": "https://playwright.dev/docs/api/class-browser#browser-version",
"Browser.isConnected": "https://playwright.dev/docs/api/class-browser#browser-is-connected",
"Browser.on": "https://playwright.dev/docs/api/class-browser#browser-on",
"BrowserContext.pages": "https://playwright.dev/docs/api/class-browsercontext#browser-context-pages",
"BrowserContext.newPage": "https://playwright.dev/docs/api/class-browsercontext#browser-context-new-page",
"BrowserContext.close": "https://playwright.dev/docs/api/class-browsercontext#browser-context-close",
"BrowserContext.on": "https://playwright.dev/docs/api/class-browsercontext#browser-context-on",
"Locator.click": "https://playwright.dev/docs/api/class-locator#locator-click",
"Locator.fill": "https://playwright.dev/docs/api/class-locator#locator-fill",
"Locator.getAttribute": "https://playwright.dev/docs/api/class-locator#locator-get-attribute",
"Locator.innerText": "https://playwright.dev/docs/api/class-locator#locator-inner-text",
"Locator.innerHTML": "https://playwright.dev/docs/api/class-locator#locator-inner-html",
"Locator.inputValue": "https://playwright.dev/docs/api/class-locator#locator-input-value",
"Locator.textContent": "https://playwright.dev/docs/api/class-locator#locator-text-content",
"Locator.count": "https://playwright.dev/docs/api/class-locator#locator-count",
"Locator.first": "https://playwright.dev/docs/api/class-locator#locator-first",
"Locator.last": "https://playwright.dev/docs/api/class-locator#locator-last",
"Locator.nth": "https://playwright.dev/docs/api/class-locator#locator-nth",
"Locator.evaluate": "https://playwright.dev/docs/api/class-locator#locator-evaluate"
}
}
}