Type Alias IShortMonarchLanguageRule1

Expand description

A rule is either a regular expression and an action shorthands: [reg,act] == { regex: reg, action: act} and : [reg,act,nxt] == { regex: reg, action: act{ next: nxt }}

type IShortMonarchLanguageRule1 = [string | RegExp, IMonarchLanguageAction]