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-h5/src/DoricPlugin.ts
pengfei.zhou d0f1320656 move dir
2019-12-21 23:37:21 +08:00

9 lines
238 B
TypeScript

import { DoricContext } from "./DoricContext"
export type DoricPluginClass = { new(...args: any[]): {} }
export class DoricPlugin {
context: DoricContext
constructor(context: DoricContext) {
this.context = context
}
}