| Total Complexity | 0 |
| Complexity/F | 0 |
| Lines of Code | 9 |
| Function Count | 0 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | 1 | import * as t from 'io-ts'; |
|
| 2 | 1 | import {NonEmptyString} from 'io-ts-types/lib/NonEmptyString'; |
|
| 3 | 1 | import {IdentifierC} from './IdentifierC'; |
|
| 4 | |||
| 5 | 1 | export const EntityC = t.type({ |
|
| 6 | _type: NonEmptyString, |
||
| 7 | _id: IdentifierC |
||
| 8 | }); |
||
| 9 |