Update knockout.mapping/knockout.mapping-2.0.d.ts

Specify Optional Parameters
This commit is contained in:
Anwar Javed
2013-01-01 15:56:38 +05:30
parent 9e621707ac
commit c47690729e

View File

@@ -5,11 +5,11 @@
interface KnockoutMappingOptions {
ignore;
include;
copy;
mappedProperties;
deferEvaluation;
ignore? : string[];
include? : string[];
copy? : string[];
mappedProperties? : string[];
deferEvaluation? : bool;
}
interface KnockoutMapping {
@@ -28,4 +28,4 @@ interface KnockoutMapping {
interface KnockoutStatic {
mapping: KnockoutMapping;
}
}