2024-11-03 17:16:20 +01:00

14 lines
209 B
TypeScript

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