@quesmed/types-rn 2.5.90 → 2.5.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/models/Question.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { RestrictedData, graphqlNormalize } from '../../types';
|
|
2
2
|
export interface ICancelSubscriptionVar {
|
|
3
3
|
subscriptionId: number;
|
|
4
4
|
}
|
|
5
|
-
export type ICancelSubscriptionData =
|
|
5
|
+
export type ICancelSubscriptionData = RestrictedData<graphqlNormalize & string, 'cancelSubscription'>;
|
|
6
6
|
export declare const CANCEL_SUBSCRIPTION: import("@apollo/client").DocumentNode;
|