import { Incident } from "incident"; export type Name = "RedirectionLimit"; export const name: Name = "RedirectionLimit"; export interface Data { limit?: number; } export type Cause = undefined; export type Type = Incident; export function create(limit?: number): Incident { return Incident(name, {limit}); }