|
@@ -1,6 +1,29 @@
|
|
|
// Copyright (c) Jupyter Development Team.
|
|
|
// Distributed under the terms of the Modified BSD License.
|
|
|
|
|
|
+import {
|
|
|
+ MimeData
|
|
|
+} from 'phosphor/lib/core/mimedata';
|
|
|
+
|
|
|
+import {
|
|
|
+ Token
|
|
|
+} from 'phosphor/lib/core/token';
|
|
|
+
|
|
|
+/* tslint:disable */
|
|
|
+/**
|
|
|
+ * The clipboard token.
|
|
|
+ */
|
|
|
+export
|
|
|
+const IClipboard = new Token<IClipboard>('jupyter.services.clipboard');
|
|
|
+/* tslint:enable */
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+ * The clipboard interface.
|
|
|
+ */
|
|
|
+export
|
|
|
+interface IClipboard extends MimeData {}
|
|
|
+
|
|
|
/**
|
|
|
* Copy text to the system clipboard.
|
|
|
*
|