Bumped some deps to fix parsing of template literal types
Summary:
I want to use TypesScipt type literals in a next diff (e.g.
```
type Percentage = `${number}%`
```
But to be able to use that typescript, prettier and eslint needed bumps :)
Reviewed By: nikoant
Differential Revision: D26321133
fbshipit-source-id: a4891246ef8c654f324c6daf303c5c4b2f54496e
This commit is contained in:
committed by
Facebook GitHub Bot
parent
3b6be6b7b6
commit
bf7599e574
@@ -82,12 +82,13 @@ Memory.prototype = extend(ClientMethods, {
|
||||
},
|
||||
|
||||
startRecordingAllocations: function (options: any, cb: any) {
|
||||
this.request('startRecordingAllocations', {options}, function (
|
||||
err: any,
|
||||
resp: any,
|
||||
) {
|
||||
cb(err, resp);
|
||||
});
|
||||
this.request(
|
||||
'startRecordingAllocations',
|
||||
{options},
|
||||
function (err: any, resp: any) {
|
||||
cb(err, resp);
|
||||
},
|
||||
);
|
||||
},
|
||||
|
||||
stopRecordingAllocations: function (cb: any) {
|
||||
|
||||
Reference in New Issue
Block a user