Interface IExternalIpRule

interface IExternalIpRule {
    regex?: {
        flags?: string;
        pattern: string;
        resultIndex?: number;
    };
    rule?: ((data: string) => string);
    type?: TIpAddressType;
    url: string;
}

Properties

Properties

regex?: {
    flags?: string;
    pattern: string;
    resultIndex?: number;
}
rule?: ((data: string) => string)
type?: TIpAddressType
url: string