// This file is auto-generated by generate-classes.js. Do not edit it. import { LenraComponent } from '../gen/response.js'; import { Component } from './component.js'; import { IWrap, WrapBaseImpl } from "../gen/components/wrap.base.js"; export { IWrap }; export function Wrap(children: (Component | LenraComponent)[] = []): WrapImpl { return new WrapImpl({ _type: "wrap", children: children.map(Component.normalize), }); } export class WrapImpl extends WrapBaseImpl { // Add here custom implementations }