import {parseCommand, ParsedCommand} from './parse-command.js';
const positionName = ['first', 'second', 'third', 'fourth', 'fifth', 'sixth'];
export function argsert(callerArguments: any[], length?: number): void;
export function argsert(
expected: string,
callerArguments: any[],
length?: number
): void;
export function argsert(
arg1: string | any[],
arg2?: any[] | number,