mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Add Knockout.mapping
This commit is contained in:
Vendored
+29
@@ -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;
|
||||
}
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user