瀏覽代碼

Add return types to clone()

Jason Grout 7 年之前
父節點
當前提交
bbde956e4d
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      packages/cells/src/widget.ts

+ 3 - 3
packages/cells/src/widget.ts

@@ -314,7 +314,7 @@ class Cell extends Widget {
   /**
    * Clone the cell, using the same model.
    */
-  clone() {
+  clone(): Cell {
     let constructor = this.constructor as typeof Cell;
     return new constructor({
       model: this.model,
@@ -623,7 +623,7 @@ class CodeCell extends Cell {
   /**
    * Clone the cell, using the same model.
    */
-  clone() {
+  clone(): CodeCell {
     let constructor = this.constructor as typeof CodeCell;
     return new constructor({
       model: this.model,
@@ -875,7 +875,7 @@ class MarkdownCell extends Cell {
   /**
    * Clone the cell, using the same model.
    */
-  clone() {
+  clone(): MarkdownCell {
     let constructor = this.constructor as typeof MarkdownCell;
     return new constructor({
       model: this.model,