UNPKG

image-in-browser

Version:

Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)

21 lines (20 loc) 490 B
/** @format */ /** * Represents data for a PSD layer. */ export declare class PsdLayerData { /** * The tag associated with the PSD layer. */ private _tag; /** * Gets the tag associated with the PSD layer. * @returns {string} The tag as a string. */ get tag(): string; /** * Initializes a new instance of the PsdLayerData class. * @param {string} tag - The tag to associate with the PSD layer. */ constructor(tag: string); }