From 20c02becb7ecc57714c5b0f154d778141c5cf845 Mon Sep 17 00:00:00 2001 From: Igor Oleinikov Date: Wed, 19 Mar 2014 12:32:38 +0400 Subject: [PATCH] Removed private functions `inherits` and `addProperties` from `Rx.internals`. --- rx.js/rx.d.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/rx.js/rx.d.ts b/rx.js/rx.d.ts index 1100bc6182..c8966badee 100644 --- a/rx.js/rx.d.ts +++ b/rx.js/rx.d.ts @@ -7,8 +7,6 @@ declare module Rx { export module internals { function isEqual(left: any, right: any): boolean; - function inherits(child: Function, parent: Function): Function; - function addProperties(obj: Object, ...sourcces: Object[]): void; function addRef(xs: Observable, r: { getDisposable(): IDisposable; }): Observable; // Priority Queue for Scheduling