Appearance
Interface: GetTimestampProps
Defined in: src/utils/getTimestamp.ts:180
Options for generating a timestamp string.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
date? | Date | The date to format. Defaults to the current date. | src/utils/getTimestamp.ts:182 |
separator? | string | The character used to separate date parts. Defaults to '-'. | src/utils/getTimestamp.ts:184 |
includeYear? | boolean | Include the year. Defaults to true. | src/utils/getTimestamp.ts:186 |
includeMonth? | boolean | Include the month. Defaults to true. | src/utils/getTimestamp.ts:188 |
includeDay? | boolean | Include the day. Defaults to true. | src/utils/getTimestamp.ts:190 |
includeHours? | boolean | Include the hours. Defaults to true. | src/utils/getTimestamp.ts:192 |
includeMinutes? | boolean | Include the minutes. Defaults to true. | src/utils/getTimestamp.ts:194 |
includeSeconds? | boolean | Include the seconds. Defaults to true. | src/utils/getTimestamp.ts:196 |
useLocalTimezone? | boolean | Use the system's local timezone instead of UTC. Defaults to false. | src/utils/getTimestamp.ts:198 |
timezone? | Timezone | Timezone 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 |