Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@qawolf/types

Package Overview
Dependencies
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qawolf/types - npm Package Compare versions

Comparing version 0.8.2 to 0.9.0-alpha.0

2

lib/common.d.ts
export declare type Action = "click" | "type" | "scroll" | "select";
export declare type BrowserType = "chromium" | "firefox" | "webkit";
export declare type Callback<S = void, T = void> = (data?: S) => T;

@@ -7,1 +8,2 @@ export declare type TypeOptions = {

};
export declare const getBrowserType: (browserType: string) => BrowserType;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getBrowserType = (browserType) => {
if (browserType === "firefox" || browserType === "webkit") {
return browserType;
}
return "chromium";
};
//# sourceMappingURL=common.js.map
"use strict";
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
Object.defineProperty(exports, "__esModule", { value: true });
__export(require("./common"));
//# sourceMappingURL=index.js.map

4

package.json
{
"name": "@qawolf/types",
"description": "qawolf types",
"version": "0.8.2",
"version": "0.9.0-alpha.0",
"license": "BSD-3.0",

@@ -22,3 +22,3 @@ "main": "./lib/index.js",

},
"gitHead": "74449a08eae50066278c613ca19b7c05050bc551"
"gitHead": "64bb960883592bb4786981fd4886474c29d16639"
}
export type Action = "click" | "type" | "scroll" | "select";
export type BrowserType = "chromium" | "firefox" | "webkit";
export type Callback<S = void, T = void> = (data?: S) => T;

@@ -9,1 +11,9 @@

};
export const getBrowserType = (browserType: string): BrowserType => {
if (browserType === "firefox" || browserType === "webkit") {
return browserType;
}
return "chromium";
};

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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