/** * Model: BaseNoiseEffect * * THIS FILE HAS BEEN AUTOMATICALLY GENERATED. DO NOT EDIT. * */ import { BlendMode } from '../blend-mode'; /** * A noise effect */ export interface BaseNoiseEffect { /** The string literal 'NOISE' representing the effect's type. Always check the type before reading other properties. */ type: TypeEnum; /** @see BlendMode */ blendMode: BlendMode; /** The size of the noise effect */ noiseSize: number; /** The density of the noise effect */ density: number; } export type TypeEnum = 'NOISE'; //# sourceMappingURL=base-noise-effect.d.ts.map