UNPKG

@cloudquery/plugin-sdk-javascript

Version:

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

15 lines (14 loc) 478 B
import { Utf8 as ArrowString } from '@apache-arrow/esnext-esm'; import type { Nullable } from '../schema/types.js'; import type { Scalar } from './scalar.js'; declare class JSONType implements Scalar<Nullable<Uint8Array>> { private _valid; private _value; constructor(v?: unknown); get dataType(): ArrowString; get valid(): boolean; get value(): Nullable<Uint8Array>; set value(value: unknown); toString(): string; } export { JSONType as JSON };