-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Add Sol2Uml To Remix #3245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Sol2Uml To Remix #3245
Conversation
✅ Deploy Preview for remixproject ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
a74e8b1 to
e9b2113
Compare
9be2685 to
33d9907
Compare
33c0d7d to
0c2b41e
Compare
c3de8ac to
db1ec65
Compare
|
the flatten action doesn't do anything. |
0526995 to
5198d3d
Compare
| resolveContentAndSave: (url: string) => Promise<string> | ||
| fileExists: (file: string) => Promise<boolean> | ||
| writeFile: (file: string, content: string) => Promise<void> | ||
| writeFile: (file: string, content: any) => Promise<void> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this change necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, when left as a string, It becomes difficult to write the pdf to file explorer. Even though deep in the recesses of the plugin engin, it takes a string. Making it any allows me to write the result from generating the pdf to fileexplorer.
f0c45a1 to
68cc318
Compare
4790c76 to
6b23eb4
Compare
Address #3238