-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.ts
40 lines (35 loc) · 974 Bytes
/
deps.ts
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
// @deno-types="npm:@types/selenium-webdriver@^4.1.22"
import { Browser, Builder, By } from 'npm:[email protected]'
import type {
By as TBy,
ThenableWebDriver,
} from 'npm:[email protected]'
// @deno-types="https://cdn.skypack.dev/@types/[email protected]?dts"
import { isEmpty } from 'https://cdn.skypack.dev/[email protected]?dts'
import { join } from 'https://deno.land/[email protected]/path/mod.ts'
import { existsSync } from 'https://deno.land/[email protected]/fs/mod.ts'
import * as assert from 'https://deno.land/[email protected]/assert/mod.ts'
import Kia from 'https://deno.land/x/[email protected]/mod.ts'
import {
readJson,
readJsonSync,
writeJson,
writeJsonSync,
} from 'https://deno.land/x/[email protected]/mod.ts'
import { nanoid } from 'https://deno.land/x/[email protected]/mod.ts'
export {
assert,
Browser,
Builder,
By,
existsSync,
isEmpty,
join,
Kia,
nanoid,
readJson,
readJsonSync,
writeJson,
writeJsonSync,
}
export type { TBy, ThenableWebDriver }