Type Alias TabularView

{
* data: [
* {
* updatedAt: "2023-10-01T12:00:00Z",
* updatedBy: "abc123"
* },
* {
* updatedAt: "2023-10-01T13:00:00Z"
* }
* ]
* }
type TabularView = {
    data?: { updatedAt?: string; updatedBy?: string }[];
}
Index

Properties

Properties

data?: { updatedAt?: string; updatedBy?: string }[]

Type Declaration

  • OptionalupdatedAt?: string

    The timestamp when the row was last updated.

  • OptionalupdatedBy?: string

    The user id that performed the latest update in the row (corresponds to updatedAt).