[dat.gui] Add GUI class static members (#37274)

* add dat.gui GUI class static members

* remove patch version

* turn on dt-header rule
This commit is contained in:
Teodor Tanasoaia
2019-08-01 15:37:35 -07:00
committed by Jesse Trinity
parent 025e451664
commit 0f27e6706c
2 changed files with 16 additions and 3 deletions
+16 -2
View File
@@ -1,6 +1,6 @@
// Type definitions for dat.GUI 0.7.3
// Type definitions for dat.GUI 0.7
// Project: https://github.com/dataarts/dat.gui
// Definitions by: Satoru Kimura <https://github.com/gyohk>, ZongJing Lu <https://github.com/sonic3d>, Richard Roylance <https://github.com/rroylance>, Nahuel Scotti <https://github.com/singuerinc>
// Definitions by: Satoru Kimura <https://github.com/gyohk>, ZongJing Lu <https://github.com/sonic3d>, Richard Roylance <https://github.com/rroylance>, Nahuel Scotti <https://github.com/singuerinc>, Teoxoy <https://github.com/teoxoy>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export as namespace dat;
@@ -45,6 +45,20 @@ export interface GUIParams {
}
export class GUI {
static CLASS_AUTO_PLACE: string
static CLASS_AUTO_PLACE_CONTAINER: string
static CLASS_MAIN: string
static CLASS_CONTROLLER_ROW: string
static CLASS_TOO_TALL: string
static CLASS_CLOSED: string
static CLASS_CLOSE_BUTTON: string
static CLASS_CLOSE_TOP: string
static CLASS_CLOSE_BOTTOM: string
static CLASS_DRAG: string
static DEFAULT_WIDTH: number
static TEXT_CLOSED: string
static TEXT_OPEN: string
constructor(option?: GUIParams);
__controllers: GUIController[];
-1
View File
@@ -7,7 +7,6 @@
"ban-types": false,
"callable-types": false,
"comment-format": false,
"dt-header": false,
"npm-naming": false,
"eofline": false,
"export-just-namespace": false,