@quesmed/types-rn 2.0.9 → 2.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.0.9",
3
+ "version": "2.0.10",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -0,0 +1,5 @@
1
+ import { graphqlNormalize, RestrictedData } from '../../types';
2
+ export declare type ITotalQuestionsVar = null;
3
+ export declare type ITotalQuestionsData = RestrictedData<graphqlNormalize & number, 'totalQuestions'>;
4
+ export declare type ITotalCardsVar = null;
5
+ export declare type ITotalCardsData = RestrictedData<graphqlNormalize & number, 'totalCards'>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,4 @@
1
+ export * from './global';
1
2
  export * from './marksheet';
2
3
  export * from './mockTests';
3
4
  export * from './osce';
@@ -10,6 +10,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./global"), exports);
13
14
  __exportStar(require("./marksheet"), exports);
14
15
  __exportStar(require("./mockTests"), exports);
15
16
  __exportStar(require("./osce"), exports);