8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
|
import Page from "./page";
|
||
|
|
||
|
export class IndexPage extends Page {
|
||
|
public static async open(path: string) {
|
||
|
return await super.open(path);
|
||
|
}
|
||
|
}
|