|
@@ -34,6 +34,7 @@ declare module 'babylonjs-gui/2D/controls' {
|
|
export * from "babylonjs-gui/2D/controls/grid";
|
|
export * from "babylonjs-gui/2D/controls/grid";
|
|
export * from "babylonjs-gui/2D/controls/image";
|
|
export * from "babylonjs-gui/2D/controls/image";
|
|
export * from "babylonjs-gui/2D/controls/inputText";
|
|
export * from "babylonjs-gui/2D/controls/inputText";
|
|
|
|
+ export * from "babylonjs-gui/2D/controls/inputPassword";
|
|
export * from "babylonjs-gui/2D/controls/line";
|
|
export * from "babylonjs-gui/2D/controls/line";
|
|
export * from "babylonjs-gui/2D/controls/multiLine";
|
|
export * from "babylonjs-gui/2D/controls/multiLine";
|
|
export * from "babylonjs-gui/2D/controls/radioButton";
|
|
export * from "babylonjs-gui/2D/controls/radioButton";
|
|
@@ -1521,6 +1522,16 @@ declare module 'babylonjs-gui/2D/controls/inputText' {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+declare module 'babylonjs-gui/2D/controls/inputPassword' {
|
|
|
|
+ import { InputText } from "babylonjs-gui/2D/controls/inputText";
|
|
|
|
+ /**
|
|
|
|
+ * Class used to create a password control
|
|
|
|
+ */
|
|
|
|
+ export class InputPassword extends InputText {
|
|
|
|
+ protected _beforeRenderText(text: string): string;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
declare module 'babylonjs-gui/2D/controls/line' {
|
|
declare module 'babylonjs-gui/2D/controls/line' {
|
|
import { Control } from "babylonjs-gui/2D/controls/control";
|
|
import { Control } from "babylonjs-gui/2D/controls/control";
|
|
import { Vector3, Scene } from "babylonjs";
|
|
import { Vector3, Scene } from "babylonjs";
|