import { IDurationTime } from "../../../Duration.time.js"; /** * Duration represents a duration * * Duration stores a period of time as a nanosecond count, with the largest * representable duration being approximately 290 years. * * swagger:strfmt duration. */ export type IDuration = IDurationTime; export type Duration = IDuration; export type { IDuration as IComGithubGoOpenapiStrfmtDuration, Duration as ComGithubGoOpenapiStrfmtDuration };