The current release does not seem to handle the following properly, even though it is handled fine by the online Playground:
```
interface String {
newMethod ():string;
}
String.prototype.newMethod = function ():string {
// ...
return "something";
}
```
and I can't seem to add newMethod to an interface for String in VS2013 anywhere.
Thanks
Todd
Comments: This is a TypeScript editor bug (or feature request?) - can you please open it in their bug tracker? NTVS does not provide its own TypeScript editing support, it just uses the one that's already in VS. https://typescript.codeplex.com/workitem/list/basic
```
interface String {
newMethod ():string;
}
String.prototype.newMethod = function ():string {
// ...
return "something";
}
```
and I can't seem to add newMethod to an interface for String in VS2013 anywhere.
Thanks
Todd
Comments: This is a TypeScript editor bug (or feature request?) - can you please open it in their bug tracker? NTVS does not provide its own TypeScript editing support, it just uses the one that's already in VS. https://typescript.codeplex.com/workitem/list/basic