Add Knockout.mapping

This commit is contained in:
Boris Yankov
2012-10-25 22:07:30 +03:00
parent 7d669ccec8
commit 50138dabc4
3 changed files with 30 additions and 1 deletions
+29
View File
@@ -0,0 +1,29 @@
// Type definitions for Knockout.Mapping 2.0
// Project: https://github.com/SteveSanderson/knockout.mapping
// https://github.com/borisyankov/DefinitelyTyped
interface KnockoutMappingOptions {
ignore;
include;
copy;
mappedProperties;
deferEvaluation;
}
interface KnockoutMapping {
isMapped(viewModel: any): bool;
fromJS(jsObject: any): any;
fromJS(jsObject: any, targetOrOptions: any): any;
fromJS(jsObject: any, inputOptions: any, target: any): any;
fromJSON(jsonString: string): any;
toJS(rootObject: any, options?: KnockoutMappingOptions): any;
toJSON(rootObject: any, options?: KnockoutMappingOptions): any;
defaultOptions(): KnockoutMappingOptions;
resetDefaultOptions(): void;
getType(x: any): any;
visitModel(rootObject: any, callback: Function, options?: { visitedObjects?; parentName?; ignore?; copy?; include?; } ): any;
}
interface KnockoutStatic {
mapping: KnockoutMapping;
}
+1 -1
View File
@@ -25,6 +25,7 @@ Complete
* [jQuery Mobile](http://jquerymobile.com)
* [jQuery UI](http://jqueryui.com/)
* [Knockout.js](http://knockoutjs.com/)
* [Knockout.Mapping](https://github.com/SteveSanderson/knockout.mapping)
* [Modernizr](http://modernizr.com/)
* [Moment.js](https://github.com/timrwood/moment) (by [Michael Lakerveld](https://github.com/Lakerfield))
* [Mustache.js](https://github.com/janl/mustache.js)
@@ -37,7 +38,6 @@ Complete
Next
----
* Knockout.Mapping
* Chosen
* Facebook SDK
* jQuery.Validate