indicative-parser
Advanced tools
Comparing version 7.1.3 to 7.1.4
@@ -72,5 +72,3 @@ /** | ||
*/ | ||
export declare type OpaqueString = string & { | ||
readonly __opaque__: 'string'; | ||
}; | ||
export declare type OpaqueString = string; | ||
export declare type StringTypeDeclaration = { | ||
@@ -87,5 +85,3 @@ t: OpaqueString; | ||
*/ | ||
export declare type OpaqueNumber = number & { | ||
readonly __opaque__: 'number'; | ||
}; | ||
export declare type OpaqueNumber = number; | ||
export declare type NumberTypeDeclaration = { | ||
@@ -102,5 +98,3 @@ t: OpaqueNumber; | ||
*/ | ||
export declare type OpaqueBoolean = boolean & { | ||
readonly __opaque__: 'boolean'; | ||
}; | ||
export declare type OpaqueBoolean = boolean; | ||
export declare type BooleanTypeDeclaration = { | ||
@@ -107,0 +101,0 @@ t: OpaqueBoolean; |
{ | ||
"name": "indicative-parser", | ||
"version": "7.1.3", | ||
"version": "7.1.4", | ||
"description": "Schema parser for Indicative", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
@@ -25,3 +25,2 @@ <div align="center"> | ||
- [Typed schema](#typed-schema) | ||
- [Maintainers](#maintainers) | ||
@@ -48,6 +47,6 @@ <!-- END doctoc generated TOC please keep comment here to allow auto update --> | ||
```sh | ||
npm i indicative-parser@alpha | ||
npm i indicative-parser | ||
# yarn | ||
yarn add indicative-parser@alpha | ||
yarn add indicative-parser | ||
``` | ||
@@ -119,14 +118,12 @@ | ||
## Maintainers | ||
[Harminder virk](https://github.com/thetutlage) | ||
[circleci-image]: https://img.shields.io/circleci/project/github/poppinss/indicative-parser/master.svg?style=for-the-badge&logo=circleci | ||
[circleci-url]: https://circleci.com/gh/poppinss/indicative-parser "circleci" | ||
[typescript-image]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript | ||
[typescript-url]: "typescript" | ||
[npm-image]: https://img.shields.io/npm/v/indicative-parser.svg?style=for-the-badge&logo=npm | ||
[npm-url]: https://npmjs.org/package/indicative-parser "npm" | ||
[typescript-image]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript | ||
[license-url]: LICENSE.md | ||
[license-image]: https://img.shields.io/aur/license/pac.svg?style=for-the-badge | ||
[license-image]: https://img.shields.io/npm/l/indicative-parser?color=blueviolet&style=for-the-badge | ||
[license-url]: LICENSE.md "license" |
37755
1025
127