Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@types/wallabyjs

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/wallabyjs - npm Package Compare versions

Comparing version
0.0.6
to
0.0.7
+24
-24
wallabyjs/index.d.ts

@@ -27,11 +27,11 @@ // Type definitions for WallabyJS

export interface IWallabyConfig {
compilers?: IWallabyCompilers;
debug?: boolean;
env?: IWallabyEnvironment;
compilers?: IWallabyCompilers | undefined;
debug?: boolean | undefined;
env?: IWallabyEnvironment | undefined;
files: string[] | IWallabyFilePattern[];
postprocessor?: IWallabyProcessor;
preprocessors?: IWallabyProcessor;
testFramework?: string;
postprocessor?: IWallabyProcessor | undefined;
preprocessors?: IWallabyProcessor | undefined;
testFramework?: string | undefined;
tests: string[] | IWallabyFilePattern[];
workers?: IWallabyWorkers;
workers?: IWallabyWorkers | undefined;
}

@@ -119,4 +119,4 @@

export interface IWallabyFile {
content?: string;
path?: string;
content?: string | undefined;
path?: string | undefined;
rename(newPath: string): void;

@@ -140,5 +140,5 @@ changeExt(newExt: string): void;

pattern: string;
ignore?: boolean;
instrument?: boolean;
load?: boolean;
ignore?: boolean | undefined;
instrument?: boolean | undefined;
load?: boolean | undefined;
}

@@ -158,6 +158,6 @@

export interface IWallabyEnvironment {
params?: IWallabyEnvironmentParameters;
runner?: string;
type?: string;
viewportSize?: IWallabyEnvironmentViewportSize
params?: IWallabyEnvironmentParameters | undefined;
runner?: string | undefined;
type?: string | undefined;
viewportSize?: IWallabyEnvironmentViewportSize | undefined
}

@@ -176,4 +176,4 @@

export interface IWallabyEnvironmentParameters {
env?: string;
runner?: string;
env?: string | undefined;
runner?: string | undefined;
}

@@ -190,4 +190,4 @@

export interface IWallabyEnvironmentViewportSize {
width?: number;
height?: number;
width?: number | undefined;
height?: number | undefined;
}

@@ -206,3 +206,3 @@

export interface IWallabyWorkers {
recycle?: boolean;
recycle?: boolean | undefined;
}

@@ -223,7 +223,7 @@

export interface IWallaby {
localProjectDir?: string;
projectCacheDir?: string;
compilers?: IWallabyBuiltInCompilers;
localProjectDir?: string | undefined;
projectCacheDir?: string | undefined;
compilers?: IWallabyBuiltInCompilers | undefined;
defaults?: any;
}
}
MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation.

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "@types/wallabyjs",
"version": "0.0.6",
"version": "0.0.7",
"description": "TypeScript definitions for WallabyJS",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/wallabyjs",
"license": "MIT",

@@ -9,15 +10,17 @@ "contributors": [

"name": "Andrew Connell",
"url": "https://github.com/andrewconnell"
"url": "https://github.com/andrewconnell",
"githubUsername": "andrewconnell"
}
],
"main": "",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/wallabyjs"
},
"scripts": {},
"dependencies": {},
"peerDependencies": {},
"typesPublisherContentHash": "9a7828a6e5676f48e3704456b29998a9299386597e2da79f6f8c6ccbfa9d2b3b",
"typeScriptVersion": "2.0"
"typesPublisherContentHash": "9f276f52d568badd1dc67378f6e9225ee0f7cfc345b03363847668d046983569",
"typeScriptVersion": "3.6"
}

@@ -8,6 +8,6 @@ # Installation

# Details
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/wallabyjs
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/wallabyjs.
Additional Details
* Last updated: Thu, 03 Aug 2017 13:57:01 GMT
### Additional Details
* Last updated: Fri, 02 Jul 2021 18:05:14 GMT
* Dependencies: none

@@ -17,2 +17,2 @@ * Global values: none

# Credits
These definitions were written by Andrew Connell <https://github.com/andrewconnell>.
These definitions were written by [Andrew Connell](https://github.com/andrewconnell).