/** * Whether we need to calculate the domain or not * @param {Array|Function|undefined} domain - The domain to check * @returns {boolean|Array} Whether we need to calculate the domain */ export default function getCompleteDomain(domain: Array | Function | undefined): boolean | Array;