Skip to content

Commit

Permalink
fix eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aravindmd committed Dec 17, 2019
1 parent 8e7ab28 commit 89faa7d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import React from 'react';
import { Overridable, CollapsibleSection, LabeledValue, LabeledValueList } from '@spinnaker/core';

export interface IIPRangeRulesProps {
ipRules: Array<IIPRangeRulesDetails>;
ipRules: IIPRangeRulesDetails[];
}
export interface IIPRangeRulesDetails {
rules: Array<IRangeRule>;
address: String;
rules: IRangeRule[];
address: string;
}

export interface IRangeRule {
Expand Down

0 comments on commit 89faa7d

Please sign in to comment.