import { IPSApplicationObject } from '../ipsapplication-object'; import { IPSDataEntity } from '../../dataentity/ipsdata-entity'; /** * * @export * @interface IPSAppLocalDE */ export interface IPSAppLocalDE extends IPSApplicationObject { /** * * @type {IPSDataEntity} */ getPSDataEntity(): IPSDataEntity | null; /** * * @type {IPSDataEntity} */ get psDataEntity(): IPSDataEntity | null; /** * * @type {IPSDataEntity} */ getPSDataEntityMust(): IPSDataEntity; }