14 lines
209 B
TypeScript
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;
|
||
|
};
|