dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
13 lines (12 loc) • 427 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SubSchema = void 0;
const index_js_1 = require("../../../schema/index.js");
class SubSchema extends index_js_1.SchemaAction {
constructor({ schema, formattedPath, transformedPath }) {
super(schema);
this.formattedPath = formattedPath;
this.transformedPath = transformedPath;
}
}
exports.SubSchema = SubSchema;