@cloudinary/url-gen
Version:
Cloudinary URL-Gen SDK ========================= [](https://app.travis-ci.com/github/cloudinary/js-url-gen) ## About The Cloudinary URL-Gen SDK allows you to quickly and eas
29 lines (28 loc) • 690 B
TypeScript
import { NamedRegion } from "./NamedRegion.js";
/**
* @memberOf Qualifiers.Region
*/
declare class CustomRegion extends NamedRegion {
constructor();
/**
* @description The x position in pixels.
* @param {number} x
*/
x(x: number | string): this;
/**
* @description The y position in pixels.
* @param {number} y
*/
y(y: number | string): this;
/**
* @description The width of the region in pixels.
* @param {number} width
*/
width(width: number): this;
/**
* @description The height of the region in pixels.
* @param {number} height
*/
height(height: number): this;
}
export { CustomRegion };