File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 4
4
5
5
import * as environments from "./environments" ;
6
6
import * as core from "./core" ;
7
- import { CustomModels } from "./api/resources/customModels/client/Client" ;
8
7
import { EmpathicVoice } from "./api/resources/empathicVoice/client/Client" ;
8
+ import { CustomModels } from "./api/resources/customModels/client/Client" ;
9
9
import { ExpressionMeasurement } from "./api/resources/expressionMeasurement/client/Client" ;
10
10
11
11
export declare namespace HumeClient {
@@ -25,18 +25,18 @@ export declare namespace HumeClient {
25
25
export class HumeClient {
26
26
constructor ( protected readonly _options : HumeClient . Options = { } ) { }
27
27
28
- protected _customModels : CustomModels | undefined ;
29
-
30
- public get customModels ( ) : CustomModels {
31
- return ( this . _customModels ??= new CustomModels ( this . _options ) ) ;
32
- }
33
-
34
28
protected _empathicVoice : EmpathicVoice | undefined ;
35
29
36
30
public get empathicVoice ( ) : EmpathicVoice {
37
31
return ( this . _empathicVoice ??= new EmpathicVoice ( this . _options ) ) ;
38
32
}
39
33
34
+ protected _customModels : CustomModels | undefined ;
35
+
36
+ public get customModels ( ) : CustomModels {
37
+ return ( this . _customModels ??= new CustomModels ( this . _options ) ) ;
38
+ }
39
+
40
40
protected _expressionMeasurement : ExpressionMeasurement | undefined ;
41
41
42
42
public get expressionMeasurement ( ) : ExpressionMeasurement {
Original file line number Diff line number Diff line change 1
- export * as customModels from "./customModels" ;
2
1
export * as empathicVoice from "./empathicVoice" ;
2
+ export * as customModels from "./customModels" ;
3
3
export * as expressionMeasurement from "./expressionMeasurement" ;
Original file line number Diff line number Diff line change 1
- export * as customModels from "./customModels" ;
2
1
export * as empathicVoice from "./empathicVoice" ;
2
+ export * as customModels from "./customModels" ;
3
3
export * as expressionMeasurement from "./expressionMeasurement" ;
You can’t perform that action at this time.
0 commit comments