redisai-js
Version:
A high-performance Typescript client for RedisAI
22 lines (20 loc) • 385 B
TypeScript
export declare enum DType {
float32 = "FLOAT",
double64 = "DOUBLE",
int8 = "INT8",
int16 = "INT16",
int32 = "INT32",
int64 = "INT64",
uint8 = "UINT8",
uint16 = "UINT16"
}
export declare const DTypeMap: {
FLOAT: DType;
DOUBLE: DType;
INT8: DType;
INT16: DType;
INT32: DType;
INT64: DType;
UINT8: DType;
UINT16: DType;
};