Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

9 lines
372 B
TypeScript

/**
* Copyright © 2024 650 Industries.
*/
import { ConfigAPI, types } from '@babel/core';
/** Prevent importing certain known imports in given environments. This is for sanity to ensure a module never accidentally gets imported unexpectedly. */
export declare function environmentRestrictedImportsPlugin(api: ConfigAPI & {
types: typeof types;
}): babel.PluginObj;