New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bkb

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bkb - npm Package Compare versions

Comparing version 0.28.0 to 0.28.1

3

bkb.d.ts

@@ -302,4 +302,7 @@ // -- Usage definitions --

export declare function createApplication<A, O>(Class: {
new (dash: AppDash<A>): A
}): A
export declare function createApplication<A, O>(Class: {
new (dash: AppDash<A>, options: O): A
}, options: O): A
export declare function registerApplication<A>(obj: A): AppDash<A>

2

package.json
{
"name": "bkb",
"version": "0.28.0",
"version": "0.28.1",
"description": "An Unopinionated JavaScript Framework for Front-end Applications",

@@ -5,0 +5,0 @@ "main": "bkb.min.js",

import { AppBkb } from "./AppBkb"
import { AppDash } from "./exported-definitions"
export function createApplication<A, O>(Class: { new(dash: AppDash<A>, options: O): A }, options: O): A {
export function createApplication<A, O>(Class: { new (dash: AppDash<A>): A }): A
export function createApplication<A, O>(Class: { new (dash: AppDash<A>, options: O): A }, options: O): A
export function createApplication(Class: { new(dash: AppDash, options?) }, options?) {
let bkb = new AppBkb(Class, false, options)

@@ -6,0 +8,0 @@ return bkb.root.getInstance() as any

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc