New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@ibsheet/interface

Package Overview
Dependencies
Maintainers
5
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ibsheet/interface

TypeScript interface for IBSheet

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
5
Created
Source

ibsheet-interface

TypeScript interface definitions for IBSheet JavaScript Data Grid Library.

Installation

Using npm:

npm install @ibsheet/interface

Using yarn:

yarn add @ibsheet/interface

Overview

This package provides comprehensive TypeScript interface definitions for the IBSheet JavaScript Data Grid Library, enabling better type safety and IntelliSense support in TypeScript projects.

Core Interfaces

IBSheetInstance

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

IBSheetProperties

TypeScript interface definitions for IBSheet configuration properties.

IBSheetFunctions

TypeScript interface definitions for IBSheet methods and functions.

IBSheetOptions

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
}

IBSheetEvents

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
  }
}

Additional Type Definitions

This package also includes other essential IBSheet TypeScript definitions:

  • IBSheetCreateOptions - Options for creating IBSheet instances
  • IBStyleRowConfig - Configuration for row styling
  • IBInfoRowConfig - Configuration for info rows
  • IBExcelDownloadConfig - Configuration for Excel download functionality
  • And many more...

Benefits

  • Type Safety: Catch errors at compile time
  • IntelliSense: Better IDE support with auto-completion
  • Documentation: Built-in type information and hints
  • Refactoring: Safe code refactoring with type checking

Compatibility

This package is designed to work with:

  • TypeScript 4.0+
  • IBSheet JavaScript Data Grid Library

License

MIT

Keywords

ibsheet

FAQs

Package last updated on 01 Oct 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