blob: b2ea5e8462d113fac816404aaf2da5bfdf34f0ff [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import {Component, EventEmitter, Output} from "@angular/core";
import {IAPIProcessObject} from "../../../../core";
@Component({
selector: "app-edit-negative-answer",
templateUrl: "./edit-negative-answer.component.html",
styleUrls: ["./edit-negative-answer.component.scss"]
})
export class EditNegativeAnswerComponent {
public readonly variables: IAPIProcessObject = {
responsible: {
type: "Boolean",
value: false
}
};
@Output()
public readonly appSubmit = new EventEmitter<IAPIProcessObject>();
}