export namespace NSJS { export interface CommandItemObj { env?: Record // respect multiline script?: string; // automatically remove \n cmd?: string; } export type CommandItem = string | CommandItemObj | Function; export type Command = CommandItem | CommandItem[]; export type CommandSet = Command[]; export type NRJSModule = Record; }