Socket
Book a DemoInstallSign in
Socket

@pega/pcore-pconnect-typedefs

Package Overview
Dependencies
Maintainers
4
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pega/pcore-pconnect-typedefs

Contains typedefs for PCore and PConnect

latest
npmnpm
Version
4.1.0
Version published
Maintainers
4
Created
Source

Summary

This package provides typedefs for PCore and PConnect of release 25.1.

Refer : https://docs.pega.com/bundle/pcore-pconnect/page/pcore-pconnect-public-apis/api/using-pcore-pconnect-public-apis.html

Installation

npm install --save-dev @pega/pcore-pconnect-typedefs@4.1.0

Usage

In JavaScript project

Point to @pega/pcore-pconnect-typeDefs in <project-root>/jsconfig.json
{
  "exclude": [],
  "compilerOptions": {
    "typeRoots": ["node_modules/@types", "node_modules/@pega"],
    "baseUrl": "./"
  }
}
Usage for PCore APIs
PCore.getCascadeManager().registerFields();
Usage for PConnect API, Since getPConnect will be a prop inside the components and it'll be scoped with the component itself.
const { getPConnect } = props;

/** @type {PConnect} */
const pConn = getPConnect();

In TypeScript project

Point to @pega/pcore-pconnect-typeDefs in <project-root>/tsconfig.json
{
  "exclude": [],
  "compilerOptions": {
    "typeRoots": ["node_modules/@types", "node_modules/@pega"],
    "baseUrl": "./"
  }
}
Usage for PCore APIs
PCore.getCascadeManager().registerFields();
Usage for PConnect API, Since getPConnect will be a prop inside the components and it'll be scoped with the component itself.
const { getPConnect } = props;
const pconn: typeof PConnect = getPConnect();

Additional Details

Last updated: Wed Aug 13 2025 19:46:24 GMT+0530

Global values: PCore, PConnect, getPConnect

Credits

These definitions were written by pega.

Keywords

Pega PCore Pega Platform

FAQs

Package last updated on 13 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts