@timescaledb/core
Version:
The `@timescaledb/core` package provides fundamental building blocks for working with TimescaleDB in TypeScript/JavaScript applications. It includes SQL query builders and utilities for managing hypertables, continuous aggregates, compression, and other T
13 lines (12 loc) • 431 B
TypeScript
export declare enum HypertableErrors {
NAME_REQUIRED = "Hypertable name is required",
OPTIONS_REQUIRED = "Hypertable options are required",
INVALID_OPTIONS = "Invalid hypertable options",
INVALID_NAME = "Invalid hypertable name"
}
export declare enum ExtensionErrors {
INVALID_OPTIONS = "Invalid extension options"
}
export declare enum CompressionErrors {
INVALID_OPTIONS = "Invalid compression options"
}