New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@excel-builder-vanilla/types

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@excel-builder-vanilla/types - npm Package Compare versions

Comparing version 3.0.0 to 3.0.3

2

dist/excel-builder.js

@@ -1,1 +0,1 @@

'use strict';
'use strict';
import { XMLDOM } from '../XMLDOM';
/**

@@ -4,0 +3,0 @@ *

@@ -0,6 +1,5 @@

import { AbsoluteAnchor } from './AbsoluteAnchor';
import { Chart } from './Chart';
import { OneCellAnchor } from './OneCellAnchor';
import { TwoCellAnchor } from './TwoCellAnchor';
import { OneCellAnchor } from './OneCellAnchor';
import { Chart } from './Chart';
import { AbsoluteAnchor } from './AbsoluteAnchor';
/**

@@ -7,0 +6,0 @@ * This is mostly a global spot where all of the relationship managers can get and set

import { XMLDOM } from '../XMLDOM';
/**

@@ -4,0 +3,0 @@ *

@@ -0,5 +1,4 @@

import { Util } from '../Util';
import { XMLDOM } from '../XMLDOM';
import { Drawing } from './Drawing';
import { XMLDOM } from '../XMLDOM';
import { Util } from '../Util';
export declare class Picture extends Drawing {

@@ -6,0 +5,0 @@ media: any;

import { XMLDOM } from '../XMLDOM';
export declare class TwoCellAnchor {

@@ -4,0 +3,0 @@ from: any;

@@ -0,5 +1,4 @@

import { Drawing } from './Drawing/Drawing';
import { Picture } from './Drawing/Picture';
import { RelationshipManager } from './RelationshipManager';
import { Picture } from './Drawing/Picture';
import { Drawing } from './Drawing/Drawing';
/**

@@ -6,0 +5,0 @@ * @module Excel/Drawings

import { XMLDOM } from './XMLDOM';
export declare class Pane {

@@ -4,0 +3,0 @@ state: null | 'split' | 'frozen' | 'frozenSplit';

import { Util } from './Util';
/**

@@ -32,3 +31,3 @@ * @module Excel/RelationshipManager

object: any;
} | undefined;
};
};

@@ -35,0 +34,0 @@ };

@@ -0,4 +1,3 @@

import { Pane } from './Pane';
import { XMLDOM } from './XMLDOM';
import { Pane } from './Pane';
interface SheetViewOption {

@@ -5,0 +4,0 @@ pane?: Pane;

@@ -0,4 +1,3 @@

import { ExcelFontStyle, ExcelStyleInstruction } from '../interfaces';
import { XMLDOM } from './XMLDOM';
import { ExcelFontStyle, ExcelStyleInstruction } from '../interfaces';
/**

@@ -5,0 +4,0 @@ * @module Excel/StyleSheet

@@ -0,4 +1,3 @@

import { ExcelSortState, ExcelTableColumn } from '../interfaces';
import { XMLDOM } from './XMLDOM';
import { ExcelSortState, ExcelTableColumn } from '../interfaces';
/**

@@ -5,0 +4,0 @@ * @module Excel/Table

import { XMLDOM, XMLNode } from './XMLDOM';
/**

@@ -4,0 +3,0 @@ * @module Excel/Util

@@ -0,9 +1,8 @@

import { Drawings } from './Drawings';
import { RelationshipManager } from './RelationshipManager';
import { SharedStrings } from './SharedStrings';
import { StyleSheet } from './StyleSheet';
import { Table } from './Table';
import { Worksheet } from './Worksheet';
import { XMLDOM } from './XMLDOM';
import { Worksheet } from './Worksheet';
import { Table } from './Table';
import { StyleSheet } from './StyleSheet';
import { SharedStrings } from './SharedStrings';
import { RelationshipManager } from './RelationshipManager';
import { Drawings } from './Drawings';
/**

@@ -10,0 +9,0 @@ * @module Excel/Workbook

@@ -0,8 +1,7 @@

import { ExcelColumn, ExcelColumnFormat, ExcelColumnMetadata, ExcelMargin, ExcelStyleInstruction } from '../interfaces';
import { Drawings } from './Drawings';
import { SharedStrings } from './SharedStrings';
import { SheetView } from './SheetView';
import { Table } from './Table';
import { XMLDOM, XMLNode } from './XMLDOM';
import { Table } from './Table';
import { SheetView } from './SheetView';
import { SharedStrings } from './SharedStrings';
import { Drawings } from './Drawings';
import { ExcelColumn, ExcelColumnFormat, ExcelColumnMetadata, ExcelMargin, ExcelStyleInstruction } from '../interfaces';
interface CharType {

@@ -68,5 +67,5 @@ font?: string;

_freezePane: {
xSplit?: number | undefined;
ySplit?: number | undefined;
cell?: string | undefined;
xSplit?: number;
ySplit?: number;
cell?: string;
};

@@ -73,0 +72,0 @@ name: string;

@@ -0,4 +1,3 @@

import { ZipOptions } from 'fflate';
import { Workbook } from './Excel/Workbook';
import { ZipOptions } from 'fflate';
type InferOutputByType<T extends 'Blob' | 'Uint8Array'> = T extends 'Blob' ? Blob : T extends 'Uint8Array' ? Uint8Array : any;

@@ -5,0 +4,0 @@ /**

{
"name": "@excel-builder-vanilla/types",
"version": "3.0.0",
"version": "3.0.3",
"description": "excel-builder-vanilla types",

@@ -40,3 +40,4 @@ "author": "Stephen Liberty",

"fflate": "^0.8.2"
}
},
"gitHead": "d7a8d2c0e78e742c02b4fa401d44ace97bde69d1"
}
# @excel-builder-vanilla/types
This package contains only the shared interfaces and types of excel-builder-vanilla's package.
This package contains only the shared types and interfaces of excel-builder-vanilla's package.
A use-case for `@excel-builder-vanilla/types` is when you want to import excel-builder-vanilla's to create interfaces as shown below.
A use-case for `@excel-builder-vanilla/types` is when you want to import excel-builder-vanilla's types to create a custom interface without importing the entire excel-builder-vanilla package.

@@ -7,0 +7,0 @@ ```ts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc