import { cloneCommonProps } from './clone-common-props'; export function clone(item: T): T { return cloneCommonProps(item, item); }