@@ -15,9 +15,6 @@ import type ParseConfig from './ParseConfig';
1515import type LiveQueryClient from './LiveQueryClient' ;
1616import type ParseSchema from './ParseSchema' ;
1717import type ParseInstallation from './ParseInstallation' ;
18- import type ParseQuery from './ParseQuery' ;
19- import type * as ParseOp from './ParseOp' ;
20- import type ParseRole from './ParseRole' ;
2118
2219type AnalyticsController = {
2320 track : ( name : string , dimensions : { [ key : string ] : string } ) => Promise < any > ,
@@ -598,43 +595,43 @@ const CoreManager = {
598595 return config [ 'HooksController' ] ! ;
599596 } ,
600597
601- setParseOp ( op : typeof ParseOp ) {
598+ setParseOp ( op : any ) {
602599 config [ 'ParseOp' ] = op ;
603600 } ,
604601
605602 getParseOp ( ) {
606603 return config [ 'ParseOp' ] ! ;
607604 } ,
608605
609- setParseObject ( object : typeof ParseObject ) {
606+ setParseObject ( object : any ) {
610607 config [ 'ParseObject' ] = object ;
611608 } ,
612609
613- getParseObject ( ) : ParseObject {
610+ getParseObject ( ) {
614611 return config [ 'ParseObject' ] ! ;
615612 } ,
616613
617- setParseQuery ( query : typeof ParseQuery ) {
614+ setParseQuery ( query : any ) {
618615 config [ 'ParseQuery' ] = query ;
619616 } ,
620617
621- getParseQuery ( ) : ParseQuery {
618+ getParseQuery ( ) {
622619 return config [ 'ParseQuery' ] ! ;
623620 } ,
624621
625- setParseRole ( role : typeof ParseRole ) {
622+ setParseRole ( role : any ) {
626623 config [ 'ParseRole' ] = role ;
627624 } ,
628625
629- getParseRole ( ) : ParseRole {
626+ getParseRole ( ) {
630627 return config [ 'ParseRole' ] ! ;
631628 } ,
632629
633- setParseUser ( user : typeof ParseUser ) {
630+ setParseUser ( user : any ) {
634631 config [ 'ParseUser' ] = user ;
635632 } ,
636633
637- getParseUser ( ) : ParseUser {
634+ getParseUser ( ) {
638635 return config [ 'ParseUser' ] ! ;
639636 } ,
640637} ;
0 commit comments