Skip to content

Interface: GetTimestampProps

Defined in: src/utils/getTimestamp.ts:180

Options for generating a timestamp string.

Properties

PropertyTypeDescriptionDefined in
date?DateThe date to format. Defaults to the current date.src/utils/getTimestamp.ts:182
separator?stringThe character used to separate date parts. Defaults to '-'.src/utils/getTimestamp.ts:184
includeYear?booleanInclude the year. Defaults to true.src/utils/getTimestamp.ts:186
includeMonth?booleanInclude the month. Defaults to true.src/utils/getTimestamp.ts:188
includeDay?booleanInclude the day. Defaults to true.src/utils/getTimestamp.ts:190
includeHours?booleanInclude the hours. Defaults to true.src/utils/getTimestamp.ts:192
includeMinutes?booleanInclude the minutes. Defaults to true.src/utils/getTimestamp.ts:194
includeSeconds?booleanInclude the seconds. Defaults to true.src/utils/getTimestamp.ts:196
useLocalTimezone?booleanUse the system's local timezone instead of UTC. Defaults to false.src/utils/getTimestamp.ts:198
timezone?TimezoneTimezone to format the date in. Accepts an IANA identifier (e.g. 'Asia/Kolkata') or a common abbreviation (e.g. 'IST', 'CET'). Overrides useLocalTimezone when set.src/utils/getTimestamp.ts:204

Matterway Assistant SDK Documentation