2.1 constructor(name = "")
Description
Creates a new Table instance with an optional name
stored in a private field. The name is not currently exposed publicly but can be useful
for debugging or future features.
Signature
constructor(name?: string)
Example
import { Table } from "@ckn-technology/data";
const userTable = new Table("Users");
const logTable = new Table(); // unnamed