/** * @typedef Pattern * Pattern. * @property {ReadonlyArray} replace * Suggestions. * @property {true} [omit=false] * Removing the phrase is also an option (default: `false`). */ /** * @type {Readonly>>} * Patterns. */ export const patterns: Readonly>>; /** * Pattern. */ export type Pattern = { /** * Suggestions. */ replace: ReadonlyArray; /** * Removing the phrase is also an option (default: `false`). */ omit?: true; };