SYMBOL INDEX (53 symbols across 10 files) FILE: bin/schemats-mysql.ts type Command (line 10) | type Command = commander.Command FILE: bin/schemats-postgres.ts type Command (line 10) | type Command = commander.Command FILE: example/db-custom-types.ts type RandomPetFacts (line 1) | type RandomPetFacts = Record FILE: example/db-types.ts type Animal (line 14) | enum Animal { type User (line 19) | interface User { type Pet (line 24) | interface Pet { type Tables (line 36) | interface Tables { type CustomTypes (line 41) | type CustomTypes = RandomPetFacts FILE: example/schema.sql type "pet_store" (line 11) | CREATE TABLE "pet_store"."user" ( type "pet_store" (line 16) | CREATE TABLE "pet_store"."pet" ( FILE: src/config.ts type ConfigValues (line 3) | interface ConfigValues { class Config (line 16) | class Config { method constructor (line 17) | constructor (public config: Partial & Pick type TableDefinition (line 26) | type TableDefinition = Record type Database (line 28) | interface Database { FILE: src/schema-mysql.ts class MysqlDatabase (line 94) | class MysqlDatabase implements Database { method constructor (line 98) | constructor (private config: Config, public connectionString: string) { method isReady (line 101) | public async isReady(): Promise { method close (line 105) | public async close(): Promise { method getConnectionString (line 109) | public getConnectionString (): string { method getDefaultSchema (line 113) | public getDefaultSchema (): string { method getEnums (line 117) | public async getEnums(schema: string): Promise { method getTableDefinition (line 136) | public async getTableDefinition (tableSchema: string, tableName: strin... method getTableTypes (line 157) | public async getTableTypes (tableSchema: string, tableName: string, cu... method getSchemaTables (line 169) | public async getSchemaTables (schemaName: string): Promise { method getColumnComments (line 181) | public async getColumnComments(schemaName: string, tableName: string) { method query (line 201) | private async query (query: string, args: any[]): Promise { FILE: src/schema-postgres.ts class PostgresDatabase (line 83) | class PostgresDatabase implements Database { method constructor (line 87) | constructor(private config: Config, private connectionString?: string) { method isReady (line 91) | public async isReady() { method close (line 98) | public async close() { method getConnectionString (line 102) | public getConnectionString(): string { method getDefaultSchema (line 106) | public getDefaultSchema(): string { method getEnums (line 110) | public async getEnums(schema: string): Promise { method getTableDefinition (line 126) | public async getTableDefinition(tableSchema: string, tableName: string) { method getTableTypes (line 147) | public async getTableTypes(tableSchema: string, tableName: string, cus... method getSchemaTables (line 159) | public async getSchemaTables(schemaName: string): Promise { method getColumnComments (line 206) | public async getColumnComments(schemaName: string, tableName: string) {