# LayerMixin.matte
The matte applied onto this layer, if any

{/* Do not edit this file. It is automatically generated by API Documenter. */}

## LayerMixin.matte property

The matte applied onto this layer, if any

**Signature:**

```typescript
matte?: Matte | undefined;
```

## Example

```ts
// Create a matte
const matte: Matte = {
  layer: matteSource,
  inverted: false,
};

// Apply matte to layer
layer.matte = matte;
```
