dojo: Rename interface from "object" to "objectInstance" (#19198)

This commit is contained in:
Andy 2017-08-22 13:45:25 -07:00 committed by GitHub
parent 91ae697cee
commit bd4e914901
2 changed files with 6 additions and 6 deletions

View File

@ -23,8 +23,8 @@ declare namespace dojox {
*
*
*/
class object {
constructor();
const object: { new(): objectInstance };
interface objectInstance {
/**
* multiplies the existing matrix with an argument on left side
* (matrix * this.matrix)
@ -2529,7 +2529,7 @@ declare namespace dojox {
* @param outline
*/
class BinarySearchTree {
constructor(obj: dojox.gfx3d.object, outline: any);
constructor(obj: dojox.gfx3d.objectInstance, outline: any);
/**
*
* @param obj
@ -3240,7 +3240,7 @@ declare module "dojox/gfx3d" {
export=exp;
}
declare module "dojox/gfx3d/object" {
var exp: dojox.gfx3d.object
var exp: dojox.gfx3d.objectInstance;
export=exp;
}
declare module "dojox/gfx3d/gradient" {

View File

@ -6293,7 +6293,7 @@ declare namespace dojox {
*
*
*/
interface object {
interface objectInstance {
/**
* builds a function from a snippet, returns a string, which
* represents the function.
@ -12082,7 +12082,7 @@ declare module "dojox/lang/functional/listcomp" {
export=exp;
}
declare module "dojox/lang/functional/object" {
var exp: dojox.lang.functional.object
var exp: dojox.lang.functional.objectInstance
export=exp;
}
declare module "dojox/lang/functional/zip" {