/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { BranchProtectionAsResponse } from "../definitions/BranchProtectionAsResponse"; export interface ShortBranchAsResponse { name: string; commit: { sha: string; url: string; }; protected: boolean; protection?: BranchProtectionAsResponse; protection_url?: string; } //# sourceMappingURL=ShortBranchAsResponse.d.ts.map