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)

24 lines (23 loc) 836 B
/** @format */ import { InputBuffer } from '../../../common/input-buffer.js'; import { PsdLayerData } from './psd-layer-data.js'; /** * Represents additional data for a PSD layer. */ export declare class PsdLayerAdditionalData extends PsdLayerData { /** * The input buffer containing the additional data. */ private _data; /** * Gets the input buffer containing the additional data. * @returns {InputBuffer<Uint8Array>} The input buffer. */ get data(): InputBuffer<Uint8Array>; /** * Initializes a new instance of the PsdLayerAdditionalData class. * @param {string} tag - The tag associated with the layer data. * @param {InputBuffer<Uint8Array>} data - The input buffer containing the additional data. */ constructor(tag: string, data: InputBuffer<Uint8Array>); }