import { AApp } from 'ts-react-app-infrastructure'; import { appHp } from '../../helper'; export abstract class AWebApp extends AApp { isDebug() { return appHp.isDebug(); } //非继承成员 abstract getImageFullPath(imgName: string): string; }