UNPKG

@cloudquery/plugin-sdk-javascript

Version:

This is the high-level package to use for developing CloudQuery plugins in JavaScript

15 lines (14 loc) 472 B
import type { DataType } from '@apache-arrow/esnext-esm'; import type { Nullable } from '../schema/types.js'; import type { Scalar } from './scalar.js'; export declare class Int32 implements Scalar<Nullable<bigint>> { private _valid; private _value; constructor(v?: unknown); get dataType(): DataType; get valid(): boolean; get value(): Nullable<bigint>; set value(value: unknown); toString(): string; validInt32(n: bigint): boolean; }