import type { MatchDetailDifferenceKey } from "./MatchDetailDifferenceKey"; export interface MatchDetail { match: boolean; matchStrict: boolean; extraKeys: string[]; missingKeys: string[]; differenceKeys: MatchDetailDifferenceKey[]; }