UNPKG

@notadd/cli

Version:

notadd core none dependence

10 lines (7 loc) 169 B
export abstract class CodeFactory { abstract create(): any; createModule(){} } export class BasicCodeFactory extends CodeFactory { create() {} }