docs(datetime): specify default value for dayShortNames (#21281)

This commit is contained in:
Niklas Merz
2020-06-02 23:21:38 +02:00
committed by GitHub
parent 1ed81693f2
commit c7e94a1f23
3 changed files with 4 additions and 3 deletions

View File

@ -179,6 +179,7 @@ export class Datetime implements ComponentInterface {
/**
* Short abbreviated day of the week names. This can be used to provide
* locale names for each day in the week. Defaults to English.
* Defaults to: `['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']`
*/
@Prop() dayShortNames?: string[] | string;