
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@ibsheet/interface
Advanced tools
TypeScript interface definitions for IBSheet JavaScript Data Grid Library.
npm install @ibsheet/interface
yarn add @ibsheet/interface
This package provides comprehensive TypeScript interface definitions for the IBSheet JavaScript Data Grid Library, enabling better type safety and IntelliSense support in TypeScript projects.
Combined interface that includes both properties and methods of an IBSheet instance.
Type Definition:
export type IBSheetInstance = IBSheetProperties & IBSheetFunctions
Usage Example:
import type { IBSheetInstance } from '@ibsheet/interface';
let sheetInst: IBSheetInstance;
// Method usage (from IBSheetFunctions)
sheetInst.addRow(); // Row append method
// Property access (from IBSheetProperties)
const size = sheetInst['Size']; // Access Size property
TypeScript interface definitions for IBSheet configuration properties.
TypeScript interface definitions for IBSheet methods and functions.
Interface for IBSheet initialization options.
Usage Example:
import type { IBSheetOptions } from '@ibsheet/interface';
const options: IBSheetOptions = {
Cfg: {
SearchMode: 2, // IBSheetProperties
HeaderMerge: 3, // IBSheetProperties
}
// ... other options
}
TypeScript interface definitions for IBSheet event handlers.
Usage Example:
import type { IBSheetEvents, IBSheetOptions } from '@ibsheet/interface';
// Define event handler with proper typing
const handleAfterChange: IBSheetEvents['onAfterChange'] = (param) => {
// Parameter type is automatically inferred
console.log('Data changed value:', param.val);
};
const options: IBSheetOptions = {
// ... other options
Events: {
onAfterChange: handleAfterChange
// ... other event handlers
}
}
This package also includes other essential IBSheet TypeScript definitions:
IBSheetCreateOptions - Options for creating IBSheet instancesIBStyleRowConfig - Configuration for row stylingIBInfoRowConfig - Configuration for info rowsIBExcelDownloadConfig - Configuration for Excel download functionalityThis package is designed to work with:
FAQs
TypeScript interface for IBSheet
We found that @ibsheet/interface demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.