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

    Interface DeleteDetails

    Indicates you want to delete the layer, identified by the id or name. Note the object is currently empty but leaves room for further enhancements.

    interface DeleteDetails {
        id?: number;
        includeChildren?: boolean;
        name?: string;
    }
    Index

    Properties

    id?: number

    The layer ID.

    includeChildren?: boolean

    Indicates that child layers are included when deleting a group layer.

    name?: string

    The layer name. You can identify a layer by id or name. That makes either id or name a required field.