Files
windmill/cli/wasm/regex/windmill_parser_wasm.d.ts
hugocasa d2328e3670 fix: update parsers to prevent assets var bug (#6246)
* fix: update parsers to prevent assets var bug

* fix wrong parse function in cli for duckdb

---------

Co-authored-by: Diego Imbert <diego@windmill.dev>
2025-07-21 10:58:09 +02:00

15 lines
692 B
TypeScript

/* tslint:disable */
/* eslint-disable */
export function parse_bash(code: string): string;
export function parse_powershell(code: string): string;
export function parse_sql(code: string): string;
export function parse_mysql(code: string): string;
export function parse_oracledb(code: string): string;
export function parse_duckdb(code: string): string;
export function parse_bigquery(code: string): string;
export function parse_snowflake(code: string): string;
export function parse_mssql(code: string): string;
export function parse_db_resource(code: string): string | undefined;
export function parse_graphql(code: string): string;
export function parse_assets_sql(code: string): string;