@forge/cli-shared

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