NamedTransformation

Description

Applies a pre-defined named transformation of the given name.

Examples

			import {Cloudinary} from "@cloudinary/url-gen";
			import {name} from "@cloudinary/url-gen/actions/namedTransformation";
			
			const yourCldInstance = new Cloudinary({cloud:{cloudName:'demo'}});
			const image = yourCldInstance.image('woman');
			image.namedTransformation(
			 name('my_named_transformation'),
			);