mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
31 lines
946 B
TypeScript
31 lines
946 B
TypeScript
// Type definitions for knockout-secure-binding
|
|
// Project: https://github.com/brianmhunt/knockout-secure-binding
|
|
// Definitions by: Pine Mizune <https://github.com/pine613>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../knockout/knockout.d.ts" />
|
|
|
|
interface KnockoutSecureBindingOptions {
|
|
attribute?: string;
|
|
globals?: any;
|
|
bindings?: KnockoutBindingHandlers;
|
|
noVirtualElements?: boolean;
|
|
}
|
|
|
|
interface KnockoutSecureBindingProvider extends KnockoutBindingProvider {
|
|
new (options?: KnockoutSecureBindingOptions): KnockoutBindingProvider;
|
|
}
|
|
|
|
interface KnockoutStatic {
|
|
secureBindingsProvider: {
|
|
new (options?: KnockoutSecureBindingOptions): KnockoutBindingProvider;
|
|
};
|
|
}
|
|
|
|
declare module "knockout-secure-binding" {
|
|
var klass: {
|
|
new (options?: KnockoutSecureBindingOptions): KnockoutBindingProvider;
|
|
};
|
|
|
|
export = klass;
|
|
} |