UNPKG

@cloudquery/plugin-sdk-javascript

Version:

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

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