LP
LP
I was just testing out some stuff in nodejs and if I were to do: ``` var ko = require("knockout"); ko.mapping = require("knockout.mapping"); var somePojoWithObservables = new blah(); // populate...
Any chance we could get a d.ts file to add the tracking and stuff to the ko interface.
So for normal objects you would do something like `ko.getObservable(myModel, myPropertyName);` and that works great, however lets assume I have a model like so: ``` javascript var someModel = {...
I could have sworn this was working last time I used it, but if you basically do: `var ko = require("knockout-es5");` It does not seem to expose the main methods,...
I know there is a `getObservable` method, however is there a way to get an observable Array? I am using typescript and the descriptor file implies that `getObservable` returns `KnockoutObservable`...
So I have a project with 2 databases, mainly so the code generated can be kept separate, and I am trying to reference components and events in the first database...
This was discussed in the gitter and replicated by another: The below video shows me trying to select a group as the type for the collections within a component and...
So historically you either used the action designer (default) or you specified your handler was a Code Handler and just wrote the logic for the handler yourself. In this version...
I was wondering if it would be possible to have the notion of a `dist` folder or something and just keep the latest version of the lib in there so...
Seem to get an error when trying to build on an empty project with a single component, here were the steps: - Create a new project - Downloaded and unzipped...