mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:17:36 +00:00
Libraries: Move to Userland/Libraries/
This commit is contained in:
parent
dc28c07fa5
commit
13d7c09125
1857 changed files with 266 additions and 274 deletions
16
Userland/Libraries/LibWeb/Tests/libweb_tester.d.ts
vendored
Normal file
16
Userland/Libraries/LibWeb/Tests/libweb_tester.d.ts
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
// NOTE: This file is only for syntax highlighting, documentation, etc.
|
||||
|
||||
interface LibwebTester {
|
||||
/**
|
||||
* Changes the page to the specified URL. Everything afterwards will refer to the new page.
|
||||
* @param url Page to load.
|
||||
*/
|
||||
changePage(url: string): void;
|
||||
}
|
||||
|
||||
interface Window {
|
||||
/**
|
||||
* Special test object used to ease test development for LibWeb.
|
||||
*/
|
||||
readonly libweb_tester: LibwebTester;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue