1 /** 2 * The type of (redux) action to add known domains to the list of domains known 3 * to the feature base/known-domains. 4 * 5 * { 6 * type: ADD_KNOWN_DOMAINS, 7 * knownDomains: Array<string> 8 * } 9 */ 10 export const ADD_KNOWN_DOMAINS = 'ADD_KNOWN_DOMAINS';