KC's Workspace
    Preparing search index...
    interface ModuleInfo {
        ast: ProgramNode | null;
        attributes: Record<string, string>;
        code: string | null;
        dynamicallyImportedIdResolutions: readonly ResolvedId[];
        dynamicallyImportedIds: readonly string[];
        dynamicImporters: readonly string[];
        exportedBindings: Record<string, string[]> | null;
        exports: string[] | null;
        hasDefaultExport: boolean | null;
        id: string;
        implicitlyLoadedAfterOneOf: readonly string[];
        implicitlyLoadedBefore: readonly string[];
        importedIdResolutions: readonly ResolvedId[];
        importedIds: readonly string[];
        importers: readonly string[];
        isEntry: boolean;
        isExternal: boolean;
        isIncluded: boolean | null;
        meta: CustomPluginOptions;
        moduleSideEffects: boolean | "no-treeshake";
        safeVariableNames: Record<string, string> | null;
        syntheticNamedExports: string | boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    ast: ProgramNode | null
    attributes: Record<string, string>
    code: string | null
    dynamicallyImportedIdResolutions: readonly ResolvedId[]
    dynamicallyImportedIds: readonly string[]
    dynamicImporters: readonly string[]
    exportedBindings: Record<string, string[]> | null
    exports: string[] | null
    hasDefaultExport: boolean | null
    id: string
    implicitlyLoadedAfterOneOf: readonly string[]
    implicitlyLoadedBefore: readonly string[]
    importedIdResolutions: readonly ResolvedId[]
    importedIds: readonly string[]
    importers: readonly string[]
    isEntry: boolean
    isExternal: boolean
    isIncluded: boolean | null
    meta: CustomPluginOptions
    moduleSideEffects: boolean | "no-treeshake"
    safeVariableNames: Record<string, string> | null
    syntheticNamedExports: string | boolean