Expected structure for imported JSON files

export interface ImportedMatchData {
/** Export metadata from the original export */
metadata: ExportMetadata;
/** Array of match results */
matches: MatchResult[];
}
interface ImportedMatchData {
    metadata: ExportMetadata;
    matches: MatchResult[];
}

Properties

Properties

metadata: ExportMetadata

Export metadata from the original export

matches: MatchResult[]

Array of match results