@forge/cli-shared

8.24.0-experimental-04cc2b98.24.1-next.0
out/service/supported-products-service.d.ts
~out/service/supported-products-service.d.tsModified
+4−3
Index: package/out/service/supported-products-service.d.ts
===================================================================
--- package/out/service/supported-products-service.d.ts
+++ package/out/service/supported-products-service.d.ts
@@ -1,10 +1,11 @@
+/// <reference types="node" />
 import { StatsigService } from './statsig-service';
 import { URL } from 'url';
 import { ProductDisplayName } from '../shared';
-export type SupportedProduct = 'Jira' | 'Confluence' | 'Compass' | 'Teamwork Graph' | 'Atlas' | 'Bitbucket';
-type ProductType = 'sited' | 'workspace';
-export type ProductDefinition = {
+export declare type SupportedProduct = 'Jira' | 'Confluence' | 'Compass' | 'Teamwork Graph' | 'Atlas' | 'Bitbucket';
+declare type ProductType = 'sited' | 'workspace';
+export declare type ProductDefinition = {
     name: SupportedProduct;
     productType: ProductType;
     special?: {
         supportedByCrossProductApps?: boolean;