Type Alias RawScriptForDependencies

RawScriptForDependencies: {
    language:
        | "python3"
        | "deno"
        | "go"
        | "bash"
        | "powershell"
        | "postgresql"
        | "mysql"
        | "bigquery"
        | "snowflake"
        | "mssql"
        | "graphql"
        | "nativets"
        | "bun"
        | "php";
    path: string;
    raw_code: string;
}