/** * Assign {@param source} to {@param target} * {@param source} must have the same or partial type of {@param source} */ export default function StrictAssign = Partial>(target: Target, source: Source): Source & Omit;