Skip to content

Commit

Permalink
[DEPS] Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeautry committed Nov 26, 2019
1 parent bc61276 commit d03a92e
Show file tree
Hide file tree
Showing 3 changed files with 127 additions and 92 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^12.12.6",
"@types/prettier": "^1.18.3",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"@typescript-eslint/typescript-estree": "^2.6.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@types/prettier": "^1.19.0",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"@typescript-eslint/typescript-estree": "^2.9.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"jest": "^24.9.0",
"jest-codemods": "^0.22.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1"
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.2"
}
}
8 changes: 4 additions & 4 deletions src/assertions/result.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ export interface ISuccessResult<T> {

export type Expected = IAllOf | IOneOf | ISingle | IObjectKey;

interface IAllOf {
export interface IAllOf {
kind: "all-of";
values: ReadonlyArray<Expected>;
}

interface IOneOf {
export interface IOneOf {
kind: "one-of";
values: ReadonlyArray<Expected>;
}

interface ISingle {
export interface ISingle {
kind: "single";
value: JSONType;
}

interface IObjectKey {
export interface IObjectKey {
kind: "object-key";
key: string;
value: JSONType | Expected;
Expand Down
Loading

0 comments on commit d03a92e

Please sign in to comment.