@types/knockout-secure-binding
TypeScript icon, indicating that this package has built-in type declarations

0.0.34 • Public • Published

Installation

npm install --save @types/knockout-secure-binding

Summary

This package contains type definitions for knockout-secure-binding (https://github.com/brianmhunt/knockout-secure-binding).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/knockout-secure-binding.

index.d.ts

/// <reference types="knockout" />

interface KnockoutSecureBindingOptions {
    attribute?: string | undefined;
    globals?: any;
    bindings?: KnockoutBindingHandlers | undefined;
    noVirtualElements?: boolean | undefined;
}

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;
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:38 GMT
  • Dependencies: @types/knockout

Credits

These definitions were written by .

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @types/knockout-secure-binding

    Weekly Downloads

    6

    Version

    0.0.34

    License

    MIT

    Unpacked Size

    3.95 kB

    Total Files

    5

    Last publish

    Collaborators

    • types