@sheetxl/models
Version:
Models - A Headless javascript spreadsheet library.
14 lines • 568 B
TypeScript
export default ArrayElementProperty;
declare class ArrayElementProperty extends ModelProperty {
constructor(instance: any, propertyPath: any, options: any, optionsSpecific: any, propLength: any);
_optionsSpecific: any;
_propLength: any;
createIndexProperty(i: any): IndexProperty;
}
import ModelProperty from "./ModelProperty";
declare class IndexProperty extends ModelProperty {
constructor(instance: any, propertyName: any, options: any, offset: any);
_offset: any;
_lookupKey: string;
}
//# sourceMappingURL=ArrayElementProperty.d.ts.map