UNPKG

@cloudquery/plugin-sdk-javascript

Version:

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

16 lines 343 B
import { FixedSizeBinary } from '@apache-arrow/esnext-esm'; export class UUIDType extends FixedSizeBinary { constructor() { super(16); } get name() { return 'uuid'; } get metadata() { return 'uuid-serialized'; } toString() { return this.name; } } //# sourceMappingURL=uuid.js.map