@cloudquery/plugin-sdk-javascript
Version:
This is the high-level package to use for developing CloudQuery plugins in JavaScript
15 lines (14 loc) • 476 B
TypeScript
import type { DataType } from '@apache-arrow/esnext-esm';
import type { Nullable } from '../schema/types.js';
import type { Scalar } from './scalar.js';
export declare class Float32 implements Scalar<Nullable<number>> {
private _valid;
private _value;
constructor(v?: unknown);
get dataType(): DataType;
get valid(): boolean;
get value(): Nullable<number>;
set value(value: unknown);
toString(): string;
validFloat32(n: number): boolean;
}