LogoPixi’VN
pixi-jsFunctions

Function: assignWithIgnore()

> assignWithIgnore<T>(target, options, ignore?): void

Defined in: node_modules/pixi.js/lib/scene/container/utils/assignWithIgnore.d.ts:9

Internal

Assigns properties from one object to another, using an optional array of property names to ignore.

Type Parameters

T

T extends Record<string, any>

Parameters

target

T

The target object to assign properties to.

options

T

The object to assign properties from.

ignore?

Record<string, boolean>

An object of property names to ignore ({ propToIgnore: true }).

Returns

void