From 5d7bbfb34e5af4787dab36548599c6201bbdf563 Mon Sep 17 00:00:00 2001 From: Andy Date: Tue, 22 Aug 2017 13:49:01 -0700 Subject: [PATCH] go: Fix compile error (#19101) --- types/go/index.d.ts | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/types/go/index.d.ts b/types/go/index.d.ts index cb9918ff1f..ab57eb61f9 100644 --- a/types/go/index.d.ts +++ b/types/go/index.d.ts @@ -5452,7 +5452,7 @@ declare namespace go { /** * Copies properties from this model to the given model, which must be of the same class as this model. - * @param {Model} copy + * @param {Model} copy */ protected cloneProtected(copy: Model): void; @@ -6629,7 +6629,7 @@ declare namespace go { /** * Copies properties from this layout to the given layout, which must be of the same class as this layout. - * @param {Layout} copy + * @param {Layout} copy */ protected cloneProtected(copy: Layout): void; @@ -8872,12 +8872,6 @@ declare namespace go { */ any(pred: (x: T) => boolean): boolean; - /** - * Produce an Iterator that first iterates over the items of this Iterator and then iterates over the items of the given Iterator. - * @param {Iterable.} it An Iterable - */ - concat(it: Iterable): Iterator; - /** * Call the given function on each item in the collection. * @param {(x: T) => void} func @@ -8895,12 +8889,6 @@ declare namespace go { */ first(): T; - /** - * Call the given function on each item in the collection and present the results in an iterator. - * @param {function(T)} func This function must not modify the collection. - */ - map(func: (x: T) => S): Iterator; - /** * Call this method to advance the iterator to the next item in the collection. */