dayjs / dayjs-website

⏰Day.js website repo
http://day.js.org/
MIT License
65 stars 228 forks source link

Update typescript.md #39

Closed charliejlevine closed 3 years ago

charliejlevine commented 3 years ago

TypeScript imports need to be updated.

``import as dayjs from 'dayjs'; import as utc from 'dayjs/plugin/utc'; import * as timezone from 'dayjs/plugin/timezone'; dayjs.extend(utc);``` Results in "t is not a function"

``import dayjs from 'dayjs'; import utc from 'dayjs/plugin/utc'; import timezone from 'dayjs/plugin/timezone'; dayjs.extend(utc);``` Works as expected

iamkun commented 3 years ago

this is not the correct update I think. please check "Have trouble importing Day.js?"

iamkun commented 3 years ago

I'll close this since it's been a while since it's been opened. Feel free to reopen if you have updates on this