abstract class Model { public static app: string; public abstract async save(): Promise<this>; constructor(opts?: any) { Object.assign(this, opts); } } export { Model as default };