slimfits
Version:
Package for loading data stored in FITS data format
8 lines (7 loc) • 467 B
TypeScript
import { IDataReader, IDataSource, IKeyword } from '../interfaces';
export declare class AsciiTableDataReader implements IDataReader {
readonly name: string;
canReadData(header: IKeyword[]): boolean;
readDataSize(header: IKeyword[]): number;
readDataAsync(file: IDataSource, offsetBytes: number, header: IKeyword[]): Promise<(string[] | Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array)[]>;
}