export type WatcherOptions = { /** * Supported glob-style patterns: * * - h?llo subscribes to hello, hallo and hxllo * - h*llo subscribes to hllo and heeeello * - h[ae]llo subscribes to hello and hallo, but not hillo * * @see https://redis.io/docs/latest/commands/psubscribe/ */ pattern?: string | string[]; };