@musallam/photoshop-client
    Preparing search index...

    Interface LayerDetails

    interface LayerDetails {
        adjustments?: ManifestJobAdjustmentDetails;
        blendOptions?: BlendDetails;
        bounds?: Bounds;
        children?: ChildrenLayerDetails[];
        fill?: FillDetails;
        id?: number;
        index?: number;
        locked?: boolean;
        mask?: LayerMaskDetails;
        name?: string;
        smartObject?: SmartObjectDetails;
        text?: TextLayerDetails;
        thumbnail?: string;
        type?: PhotoshopClient.LayerType;
        visible?: boolean;
    }
    Index

    Properties

    blendOptions?: BlendDetails
    bounds?: Bounds

    An array of nested layer objects. Only layerSections (group layers) can include children.

    id?: number

    The layer ID. An ID of -1 is valid and indicates a PSD that only contains a background image and no layers.

    index?: number

    The layer index.

    locked?: boolean

    Whether the layer is locked.

    name?: string

    The layer name.

    smartObject?: SmartObjectDetails
    thumbnail?: string

    If thumbnails were requested, this is a pre-signed GET URL to the thumbnail.

    visible?: boolean

    Whether the layer is visible.