🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

@types/sequencify

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/sequencify - npm Package Compare versions

Comparing version
0.1.0
to
0.1.1
+6
-1
sequencify/index.d.ts

@@ -22,2 +22,7 @@ // Type definitions for sequencify 0.1

declare function sequencify<T extends sequencify.TaskMap>(tasks: T, names: Array<keyof T>, results: Array<keyof T>, nest?: string[]): void;
declare function sequencify<T extends sequencify.TaskMap>(
tasks: T,
names: Array<keyof T>,
results: Array<keyof T>,
nest?: string[],
): void;
+1
-1
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/sequencify",
"version": "0.1.0",
"version": "0.1.1",
"description": "TypeScript definitions for sequencify",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sequencify",
"license": "MIT",

@@ -14,10 +15,12 @@ "contributors": [

"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/sequencify"
},
"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "8836fb50d633aa87c79c16e96beb4b864eb9552a740a0b134e0ad8fa9fd0c6c0",
"typeScriptVersion": "2.0"
"typesPublisherContentHash": "2a4336b467a86fd360490038468f3aca408c3c3357898abe4a0e52698c244a2c",
"typeScriptVersion": "4.5"
}

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

# Details
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sequencify
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sequencify.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sequencify/index.d.ts)
````ts
// Type definitions for sequencify 0.1
// Project: https://github.com/robrich/sequencify
// Definitions by: Nicolas Penin <https://github.com/npenin>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
Additional Details
* Last updated: Mon, 16 Oct 2017 17:46:41 GMT
// Definition file started by dts-gen
// TypeScript Version: 2.1
export = sequencify;
declare namespace sequencify {
interface Task {
name: string;
dep: string[];
}
interface TaskMap {
[name: string]: Task;
}
}
declare function sequencify<T extends sequencify.TaskMap>(
tasks: T,
names: Array<keyof T>,
results: Array<keyof T>,
nest?: string[],
): void;
````
### Additional Details
* Last updated: Mon, 25 Sep 2023 13:39:06 GMT
* Dependencies: none

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

# Credits
These definitions were written by Nicolas Penin <https://github.com/npenin>.
These definitions were written by [Nicolas Penin](https://github.com/npenin).