A Column for a time field. Represents a time of day with hours, minutes, and seconds.
an object that can include all base Column properties
Column
https://docs.servicenow.com/csh?topicname=table-api-now-ts.html&version=latest
const startTime = TimeColumn({ label: 'Start Time', default: time({ hours: 9, minutes: 0, seconds: 0 }),})const endTime = TimeColumn({ label: 'End Time', default: '1970-01-01 17:30:00',}) Copy
const startTime = TimeColumn({ label: 'Start Time', default: time({ hours: 9, minutes: 0, seconds: 0 }),})const endTime = TimeColumn({ label: 'End Time', default: '1970-01-01 17:30:00',})
A Column for a time field. Represents a time of day with hours, minutes, and seconds.