@n.see/psd-parser
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "@n.see/psd-parser", | ||
"private": false, | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"type": "module", | ||
@@ -6,0 +6,0 @@ "main": "dist/psd-parser.js", |
export default BlendMode; | ||
declare class BlendMode extends Module { | ||
declare class BlendMode { | ||
constructor(file: any); | ||
@@ -15,3 +15,4 @@ file: any; | ||
opacityPercentage(): number; | ||
set blendingMode(arg: any); | ||
get blendingMode(): any; | ||
} | ||
import Module from "./module"; |
export default Layer; | ||
declare class Layer extends Module { | ||
declare class Layer { | ||
static includes: typeof Module.includes; | ||
constructor(file: any, header: any); | ||
@@ -4,0 +5,0 @@ file: any; |
export default Node; | ||
declare class Node extends Module { | ||
declare class Node { | ||
static includes: typeof Module.includes; | ||
static PROPERTIES: string[]; | ||
@@ -4,0 +5,0 @@ constructor(layer: any, parent: any); |
export default class Layer extends Node { | ||
constructor(...args: any[]); | ||
isEmpty(): boolean; | ||
isVector(): boolean; | ||
getIsVectorRect(layerInfo: any): any; | ||
export(): any; | ||
} | ||
import Node from "../node"; |
@@ -13,3 +13,7 @@ export default class LayerComps { | ||
names(): any; | ||
export(): any; | ||
export(): { | ||
id: number; | ||
name: string; | ||
data: any; | ||
}; | ||
} |
@@ -9,2 +9,7 @@ export default class LinkLayers { | ||
parse(): any[]; | ||
export(): { | ||
data: any[]; | ||
name: string; | ||
id: number; | ||
}; | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
80
1799202
7770
3