UNPKG

@design-automation/mobius-inline-funcs

Version:
10 lines (9 loc) 298 B
/** * Returns a deep copy of the dictionary. * \n * A deep copy means that changing values in the copied dictionary will not affect the original dictionary. * * @param dict The dictionary. * @returns The copied dictionary. */ export declare function dictCopy(dict: object): object;