Container.d.ts 324 B

12345678
  1. import IFragment from './IFragment';
  2. export declare function container(...children: Array<string | IFragment>): Container;
  3. export declare class Container implements IFragment {
  4. private readonly children;
  5. constructor(children: Array<string | IFragment>);
  6. build(): string;
  7. }
  8. //# sourceMappingURL=Container.d.ts.map