UNPKG

pixi.js

Version:

<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">

10 lines (9 loc) 482 B
/** * Assigns properties from one object to another, using an optional array of property names to ignore. * @param target - The target object to assign properties to. * @param options - The object to assign properties from. * @param ignore - An object of property names to ignore ({ propToIgnore: true }). * @category utils * @internal */ export declare function assignWithIgnore<T extends Record<string, any>>(target: T, options: T, ignore?: Record<string, boolean>): void;