feat: add ModularPanel

This commit is contained in:
pengfei.zhou
2021-05-13 14:50:54 +08:00
committed by osborn
parent edcfb66c5d
commit 300343909a
15 changed files with 179 additions and 54 deletions

View File

@@ -70,4 +70,6 @@ export class Mutable<T>{
static of<E>(v: E) {
return new Mutable(v)
}
}
}
export type ClassType<T> = new (...args: any) => T