Update README to reflect WIP

This commit is contained in:
2025-08-18 18:42:38 -04:00
parent a698b85c51
commit 1eb0637d38
14 changed files with 576 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
import Page, { PageOpenOptions } from './Page.ts';
export type SubscribingPageOptions = { };
export class SubscribingPage extends Page {
constructor(baseUri: string, options: SubscribingPageOptions) {
super(baseUri, options);
}
get videoElement() {
return $('video');
}
public async open(options?: PageOpenOptions): Promise<void> {
await super.open(options);
}
}