interface MatchLocation {
    title?: string;
    type: string;
    values: {
        [key: string]: string;
    };
}

Properties

Properties

title?: string
type: string
values: {
    [key: string]: string;
}