File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
components/sub-components Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export class MgtArrowOptions extends MgtBaseComponent {
6161
6262 private _clickHandler : ( e : MouseEvent ) => void | any ;
6363
64- public constructor ( ) {
64+ constructor ( ) {
6565 super ( ) ;
6666 this . _clickHandler = ( e : MouseEvent ) => ( this . open = false ) ;
6767 }
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export class MgtDotOptions extends MgtBaseComponent {
4242
4343 private _clickHandler : ( e : MouseEvent ) => void | any = null ;
4444
45- public constructor ( ) {
45+ constructor ( ) {
4646 super ( ) ;
4747 this . _clickHandler = ( e : MouseEvent ) => ( this . open = false ) ;
4848 }
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export class BatchRequest {
2525 * @memberof BatchRequest
2626 */
2727 public method : string ;
28- public constructor ( resource : string , method : string ) {
28+ constructor ( resource : string , method : string ) {
2929 if ( resource . charAt ( 0 ) !== '/' ) {
3030 resource = '/' + resource ;
3131 }
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export class CustomHeaderMiddleware implements Middleware {
2020 private nextMiddleware : Middleware ;
2121 private _getCustomHeaders : ( ) => Promise < object > ;
2222
23- public constructor ( getCustomHeaders : ( ) => Promise < object > ) {
23+ constructor ( getCustomHeaders : ( ) => Promise < object > ) {
2424 this . _getCustomHeaders = getCustomHeaders ;
2525 }
2626
You can’t perform that action at this time.
0 commit comments