Variable allRulesConst

allRules: {
    chain: {
        length: {
            max: number;
            min: number;
        };
        match: RegExp;
        required: true;
        type: StringConstructor;
    };
    fioAddress: {
        length: {
            max: number;
            min: number;
        };
        match: RegExp;
        required: true;
        type: StringConstructor;
    };
    fioDomain: {
        length: {
            max: number;
            min: number;
        };
        match: RegExp;
        required: true;
        type: StringConstructor;
    };
    fioName: {
        length: {
            max: number;
            min: number;
        };
        match: RegExp;
        required: true;
        type: StringConstructor;
    };
    fioPublicKey: {
        length: {
            max: number;
            min: number;
        };
        required: true;
        type: StringConstructor;
        use: {
            testFioPublicKey: ((key: string) => any);
        };
    };
    nativeBlockchainPublicAddress: {
        length: {
            max: number;
            min: number;
        };
        match: RegExp;
        required: true;
        type: StringConstructor;
    };
    tpid: {
        length: {
            max: number;
            min: number;
        };
        match: RegExp;
        required: false;
        type: StringConstructor;
    };
} = ...