This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-web/src/DoricPlugin.ts

12 lines
264 B
TypeScript
Raw Normal View History

2019-12-19 11:52:15 +08:00
import { DoricContext } from "./DoricContext"
export type DoricPluginClass = { new(...args: any[]): {} }
export class DoricPlugin {
context: DoricContext
constructor(context: DoricContext) {
this.context = context
}
2019-12-26 19:01:28 +08:00
onTearDown() {
}
2019-12-19 11:52:15 +08:00
}