@substrate-system/routes
    Preparing search index...

    Interface RouteMatch

    interface RouteMatch {
        action?: (...any: any[]) => any;
        index?: number;
        next?: ((...any: any[]) => any) | null;
        params: Record<string, string>;
        route: string;
        splats: string[];
    }
    Index

    Properties

    action?: (...any: any[]) => any
    index?: number
    next?: ((...any: any[]) => any) | null
    params: Record<string, string>
    route: string
    splats: string[]