@tai-kun/surrealdb
Version:
The SurrealDB SDK for JavaScript
14 lines • 363 B
TypeScript
export type RawValue = string | {
readonly toSurql: () => string;
} | {
readonly toString: () => string;
} | {
readonly [Symbol.toPrimitive]: (hint: "string") => string;
};
export default class Raw {
protected _val: RawValue;
protected _str: string;
constructor(value: RawValue);
toString(): string;
}
//# sourceMappingURL=raw.d.ts.map