@cloudinary/url-gen
Version:
You are invited to influence our new SDK [Click here to view github discussion](https://github.com/cloudinary/js-url-gen/discussions/602) =========================
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 };