blob: 99cda6eaa40942784e9b9f4b67ceaba076d7e4e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* @typedef Change
* @property {string} from
* @property {string} to
*/
/**
* @type {Array<Change>}
*/
export const matches: Array<Change>;
export type Change = {
from: string;
to: string;
};
|