/opt/canhelp/node_modules/kysely/dist/cjs/plugin/with-schema
NameSizeModeActions
with-schema-plugin.d.ts25140644editdlrm
with-schema-plugin.js5780644editdlrm
with-schema-transformer.d.ts13800644editdlrm
with-schema-transformer.js77340644editdlrm
Edit: /opt/canhelp/node_modules/kysely/dist/cjs/plugin/with-schema/with-schema-plugin.js (578B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.WithSchemaPlugin = void 0; const with_schema_transformer_js_1 = require("./with-schema-transformer.js"); class WithSchemaPlugin { #transformer; constructor(schema) { this.#transformer = new with_schema_transformer_js_1.WithSchemaTransformer(schema); } transformQuery(args) { return this.#transformer.transformNode(args.node, args.queryId); } async transformResult(args) { return args.result; } } exports.WithSchemaPlugin = WithSchemaPlugin;