🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

argblock

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

argblock - npm Package Compare versions

Comparing version
0.0.8
to
0.0.9
+3
-3
dist/types/parse.d.ts
import { Block } from "./block.ts";
export declare const globalArg = "globalArg";
type ParsedBlock = {
type ParsedBlock<TBlock extends Block = any> = {
arg: string;
block: Block;
block: TBlock;
params: Record<string, string>;
};
export declare const parse: (args: string[], blocks: Block[]) => ParsedBlock[];
export declare const parse: <TBlock extends Block = any>(args: string[], blocks: TBlock[]) => ParsedBlock<TBlock>[];
export {};

@@ -5,3 +5,3 @@ {

"type": "module",
"version": "0.0.8",
"version": "0.0.9",
"main": "dist/argblock.js",

@@ -8,0 +8,0 @@ "types": "dist/types/argblock.d.ts",