UNPKG

slimfits

Version:

Package for loading data stored in FITS data format

11 lines (10 loc) 485 B
import { IKeyword, IDataReader, IDataSource } from '../interfaces'; export declare class RandomGroupsDataReader implements IDataReader { readonly name: string; canReadData(header: IKeyword[]): boolean; readDataSize(header: IKeyword[]): number; readDataAsync(file: IDataSource, offsetBytes: number, header: IKeyword[], changeEndian?: boolean): Promise<{ params: import("../interfaces").TypedArray[]; data: import("../interfaces").TypedArray[]; }>; }