/*Babylon.js Inspector*/ // Dependencies for this module: // ../../../../Tools/gulp/babylonjs declare module INSPECTOR { } declare module INSPECTOR { export class Inspector { static OnSelectionChangeObservable: BABYLON.Observable; static OnPropertyChangedObservable: BABYLON.Observable; static readonly IsVisible: boolean; static EarlyAttachToLoader(): void; static Show(scene: BABYLON.Scene, userOptions: Partial): void; static Hide(): void; } } declare module INSPECTOR { export class PropertyChangedEvent { object: any; property: string; value: any; initialValue: any; } }