Skip to content

Commit

Permalink
feat: allow user to skip removing field during flattening (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
colinyip authored Jan 17, 2022
1 parent 93dd36e commit 0890e59
Show file tree
Hide file tree
Showing 558 changed files with 28,168 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ coverage/
ts3.4/
build/
dist/
cjs/
es/

tsBuildInfo.json
Expand Down
8 changes: 8 additions & 0 deletions cjs/api/Embeddable.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**
* A PDF entity, like images or fonts, which needs to be embedded into the
* document before saving.
*/
export default interface Embeddable {
embed: () => Promise<void>;
}
//# sourceMappingURL=Embeddable.d.ts.map
1 change: 1 addition & 0 deletions cjs/api/Embeddable.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions cjs/api/Embeddable.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions cjs/api/Embeddable.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0890e59

Please sign in to comment.