addons/vscode/webview/Internal.tsxblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318// @fb-only: import {InternalImports} from './facebook/InternalImports';
b69ab319
b69ab3110// This file contains imports only used by non-OSS internal builds of ISL
b69ab3111// This should be the only file using fb-only imports and prettier ignores.
b69ab3112
b69ab3113/* eslint-disable @typescript-eslint/no-explicit-any */
b69ab3114
b69ab3115// prettier-ignore
b69ab3116type InternalImportsType =
b69ab3117 // @fb-only: Partial<typeof InternalImports>
b69ab3118 // @fb-only: /*
b69ab3119 {[key: string]: undefined | any}
b69ab3120 // @fb-only: */
b69ab3121 ;
b69ab3122
b69ab3123/**
b69ab3124 * API for accessing internal (non-OSS) features / functions.
b69ab3125 * In OSS builds, all properties will give `undefined`.
b69ab3126 */
b69ab3127export const Internal: InternalImportsType = {
b69ab3128 // @fb-only: ...InternalImports,
b69ab3129};