blob: b8ce613d488df6741d15388e0bd0db317646a9ea (
plain)
1
2
3
4
5
6
7
8
9
|
import {ModelInformationItem} from "../../shared/components/model-information/model-information.component";
export interface InstancePopup {
onCancelClick():void;
createModelInformationItems(): Array<ModelInformationItem>;
getModelName():string;
}
|