Skip to content

Commit

Permalink
docs: fix import stmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pastelmind committed Jan 3, 2022
1 parent 1d35950 commit 9cdf3bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ A `Psd` object contains a tree of `Layer` and `Group` (i.e. layer group) objects
- Each `Group` object provides a `children` property, which is an array of `Layers` and `Group`s that belong immediately under the current layer group .

```ts
import Psd, {Group, Layer, Node} from "./src";
import Psd, {Group, Layer, Node} from "@webtoon/psd";

// Recursively traverse layers and layer groups
function traverseNode(node: Node) {
Expand Down

0 comments on commit 9cdf3bf

Please sign in to comment.