@documment/mmp.core
Version:
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.1.
16 lines (15 loc) • 362 B
TypeScript
import { IDmc } from './dmc.model';
import { Dmc } from './dmc.model';
export interface IGoalDmc {
canAmendDmc: boolean;
hasDmc: boolean;
isFulfilled: boolean;
data: IDmc;
}
export declare class GoalDmc implements IGoalDmc {
canAmendDmc: boolean;
hasDmc: boolean;
isFulfilled: boolean;
data: Dmc;
constructor(params?: any);
}