| Total Complexity | 5 |
| Complexity/F | 5 |
| Lines of Code | 15 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | "use strict"; |
||
| 2 | var __importStar = (this && this.__importStar) || function (mod) { |
||
| 3 | if (mod && mod.__esModule) return mod; |
||
| 4 | var result = {}; |
||
| 5 | if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; |
||
| 6 | result["default"] = mod; |
||
| 7 | return result; |
||
| 8 | }; |
||
| 9 | Object.defineProperty(exports, "__esModule", { value: true }); |
||
| 10 | var t = __importStar(require("io-ts")); |
||
| 11 | var NonEmptyString_1 = require("io-ts-types/lib/NonEmptyString"); |
||
| 12 | exports.ResourceIdentifierC = t.type({ |
||
| 13 | type: NonEmptyString_1.NonEmptyString, |
||
| 14 | id: NonEmptyString_1.NonEmptyString |
||
| 15 | }); |
||
| 16 |