import { BaseFetchOptions, TimestampsFetchOptions } from '../../../../classes'; /** * FetchLinkOptionsDtoV1 * * Data Transfer Object for querying link collections. * Inherits timestamp filtering fields and extends them with * link-specific query parameters. */ export type FetchLinkOptionsDtoV1 = BaseFetchOptions & TimestampsFetchOptions & { tag?: string; tags?: string[]; short?: string; shorts?: string[]; };