tutu/test/objects/timelines.ts

8 lines
150 B
TypeScript
Raw Normal View History

2024-12-21 09:19:43 +00:00
import Page from "./page";
export class IndexPage extends Page {
public static async open(path: string) {
return await super.open(path);
}
}