import { UserDetailsAsResponse } from "../definitions/UserDetailsAsResponse"; export interface WatchersAsResponse { /** * The URL of these issue watcher details. */ self?: string; /** * Whether the calling user is watching this issue. */ isWatching?: boolean; /** * The number of users watching this issue. */ watchCount?: number; /** * Details of the users watching this issue. */ watchers?: Array; } //# sourceMappingURL=WatchersAsResponse.d.ts.map