
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@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
The npm package @ibsheet/interface receives a total of 57 weekly downloads. As such, @ibsheet/interface popularity was classified as not popular.
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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.