From 5050544f01925b3087452003b4355df4c2d49c9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pior?= Date: Tue, 6 Feb 2018 16:57:17 +0100 Subject: [PATCH] #6214 OtherOptionsWidgetInterface --- .../JVMOptions/OtherOptionsWidgetInterface.ts | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 js/notebook/src/tree/JVMOptions/OtherOptionsWidgetInterface.ts diff --git a/js/notebook/src/tree/JVMOptions/OtherOptionsWidgetInterface.ts b/js/notebook/src/tree/JVMOptions/OtherOptionsWidgetInterface.ts new file mode 100644 index 0000000000..8039431798 --- /dev/null +++ b/js/notebook/src/tree/JVMOptions/OtherOptionsWidgetInterface.ts @@ -0,0 +1,21 @@ +/* + * Copyright 2017 TWO SIGMA OPEN SOURCE, LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { IOtherJVMOptions } from "../Types/IJVMOptions"; + +export default interface OtherOptionsWidgetInterface { + onLoad: (other: IOtherJVMOptions) => void; +}