@cloudquery/plugin-sdk-javascript
Version:
This is the high-level package to use for developing CloudQuery plugins in JavaScript
16 lines • 344 B
JavaScript
import { Type, DataType } from '@apache-arrow/esnext-esm';
export class JSONType extends DataType {
constructor() {
super(Type.Binary);
}
get name() {
return 'json';
}
get metadata() {
return 'json-serialized';
}
toString() {
return this.name;
}
}
//# sourceMappingURL=json.js.map