export interface RedirectOptions {
    /**
     * Filter Redirects with given path
     */
    path: string;

    /**
     * Filter Redirects with given target
     */
    target: string;
}