Remove now unneeded cast

This commit is contained in:
Matt Bierner 2018-05-08 13:29:42 -07:00
parent 04255d26e1
commit 211d2ea5c2

View file

@ -88,10 +88,10 @@ export default class FileConfigurationManager {
return;
}
const args = {
const args: Proto.ConfigureRequestArguments = {
file,
...currentOptions
} as Proto.ConfigureRequestArguments;
};
await this.client.execute('configure', args, token);
this.formatOptions[key] = currentOptions;
}