mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-13 08:07:11 +02:00
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;
|
|
};
|