import { TableColumn } from "typeorm"; /** * Creates a TableColumn definition for a timestamp column. * * @param name - The name of the column. Defaults to "created_at" or "updated_at". * @returns {TableColumn} - A TableColumn object configured as a timestamp column. */ export declare const timestampColumn: (name?: "created_at" | "updated_at") => TableColumn; //# sourceMappingURL=timestampColumn.d.ts.map