7 lines
364 B
TypeScript
7 lines
364 B
TypeScript
import type TokenProcessor from "../TokenProcessor";
|
|
import type { DeclarationInfo } from "./getDeclarationInfo";
|
|
/**
|
|
* Common method sharing code between CJS and ESM cases, since they're the same here.
|
|
*/
|
|
export default function shouldElideDefaultExport(isTypeScriptTransformEnabled: boolean, tokens: TokenProcessor, declarationInfo: DeclarationInfo): boolean;
|