/** * @typedef Change * @property {string} from * @property {string} to */ /** * @type {Array} */ export const matches: Array; export type Change = { from: string; to: string; };