mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
// Type definitions for Knockout.Mapping 2.0
|
|
// Project: https://github.com/SteveSanderson/knockout.mapping
|
|
// Definitions by: Boris Yankov <https://github.com/borisyankov/>
|
|
// Definitions https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../knockout/knockout.d.ts" />
|
|
|
|
interface KnockoutMappingCreateOptions {
|
|
data: any;
|
|
parent: any;
|
|
}
|
|
|
|
interface KnockoutMappingUpdateOptions {
|
|
data: any;
|
|
parent: any;
|
|
observable: KnockoutObservableAny;
|
|
}
|
|
|
|
interface KnockoutMappingOptions {
|
|
ignore? : string[];
|
|
include? : string[];
|
|
copy? : string[];
|
|
mappedProperties? : string[];
|
|
deferEvaluation? : bool;
|
|
create?: (options: KnockoutMappingCreateOptions) => void;
|
|
update?: (options: KnockoutMappingUpdateOptions) => void;
|
|
}
|
|
|
|
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;
|
|
}
|