import { FieldState } from "./types.js"; //#region src/types/value/timestamp.d.ts /** * A timestamp field. * * @typeParam State - State of the field which determines its shape. */ type TimestampField = State extends "empty" ? null : string; //#endregion export { TimestampField }; //# sourceMappingURL=timestamp.d.ts.map