interface RouterLink {
    active?: string;
    exact?: boolean;
    params?: Params;
    path: (undefined | null | string | number)[];
}

Properties

active?: string
exact?: boolean
params?: Params
path: (undefined | null | string | number)[]