@wocker/ws
Version:
Docker workspace for web projects
16 lines (15 loc) • 330 B
TypeScript
type Options = string | {
ssl?: boolean;
host?: string;
port?: number;
user?: string;
password?: string;
database?: string;
};
export declare class MySQL {
protected connection: any;
protected options: Options;
constructor(options: Options);
query(sql: string): Promise<void>;
}
export {};