/** * @type RulePosition: Used to specify the position of a rule. * * @property before: Insert the current rule before this ruleId. * - **Pattern:** /^.*$/ * * @property after: Insert the current rule after this ruleId. * - **Pattern:** /^.*$/ * */ export type RulePosition = { before?: string; after?: string; } & { [key: string]: any; };