We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
const
I did add two other use cases in my repo, one that works and one that isn't. They are more edge case situation I would say, nice to have.
The one not working is when doing a named export of a const function inside the declaration and not as an export list like below.
I'll leave it to you to close this issue or leave it open for this "nice to have" second part.
export const doGet = () => { const title = "Google Apps Script"; const fileName = "index.html"; return HtmlService.createHtmlOutputFromFile(fileName) .setTitle(title) .setXFrameOptionsMode(HtmlService.XFrameOptionsMode.DEFAULT); };
Thank you very much again!
Originally posted by @sharky98 in #794 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I did add two other use cases in my repo, one that works and one that isn't. They are more edge case situation I would say, nice to have.
The one not working is when doing a named export of a
const
function inside the declaration and not as an export list like below.I'll leave it to you to close this issue or leave it open for this "nice to have" second part.
Thank you very much again!
Originally posted by @sharky98 in #794 (comment)
The text was updated successfully, but these errors were encountered: