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
The format function seems to have missing an options parameter.
current format() definition on index.d.ts format(template?:string): string
format(template?:string): string
result
workaround
// @ts-ignore return dayjs(dateString).format(format, { timeZone });
When using dayjs-ext I don't want to type // @ts-ignore on my code. Would it be possible to add an options to format() definition on index.d.ts?
// @ts-ignore
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The format function seems to have missing an options parameter.
current format() definition on index.d.ts
format(template?:string): string
result
![dayjs-ext_format-function](https://user-images.githubusercontent.com/44732406/63638001-f7cc7100-c6bd-11e9-9512-17b2cae4a32f.png)
workaround
When using dayjs-ext I don't want to type
// @ts-ignore
on my code.Would it be possible to add an options to format() definition on index.d.ts?
The text was updated successfully, but these errors were encountered: