/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Snowflake Table object */ export interface SnowflakeTable { /** Table name */ name: string; /** List of columns in the table */ columns: Klavis.SnowflakeColumn[]; /** Initial data rows for the table */ rows?: Klavis.SnowflakeRow[]; }