addons/isl-server/src/Internal.tsblame
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/* eslint-disable @typescript-eslint/no-explicit-any */
b69ab3111
b69ab3112// This file contains imports only used by non-OSS internal builds of ISL
b69ab3113// This should be the only file using fb-only imports and prettier ignores.
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 * API for accessing internal (non-OSS) features / functions.
b69ab3124 * In OSS builds, all properties will give `undefined`.
b69ab3125 */
b69ab3126export const Internal: InternalImportsType = {
b69ab3127 // @fb-only: ...InternalImports,
b69ab3128};