amis-rpc-design/node_modules/@react-native-community/cli-config/build/assign.d.ts

9 lines
393 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
/**
* Source: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
*
* Similar to Object.assign(), but it doesn't execute getters. This allows us to have
* lazy properties on an object and still be able to merge them together
*
*/
export default function assign(target: Object, ...sources: Object[]): Object;
//# sourceMappingURL=assign.d.ts.map