Expose annotation constant in API

Signed-off-by: Jonathan Mezach <jonathan.mezach@rr-wfm.com>
This commit is contained in:
Jonathan Mezach
2023-02-17 15:42:31 +01:00
parent 4335910a61
commit bf072ab2e8
3 changed files with 7 additions and 0 deletions
+3
View File
@@ -19,6 +19,9 @@ export const EntityOctopusDeployContent: (props: {
// @public (undocumented)
export const isOctopusDeployAvailable: (entity: Entity) => boolean;
// @public (undocumented)
export const OCTOPUS_DEPLOY_PROJECT_ID_ANNOTATION = 'octopus.com/project-id';
// @public (undocumented)
export interface OctopusDeployApi {
// (undocumented)
+2
View File
@@ -13,4 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/** @public */
export const OCTOPUS_DEPLOY_PROJECT_ID_ANNOTATION = 'octopus.com/project-id';
+2
View File
@@ -20,3 +20,5 @@ export {
} from './plugin';
export * from './api';
export { OCTOPUS_DEPLOY_PROJECT_ID_ANNOTATION } from './constants';