@kalamazoo/docs
Version:
Utilities for building documentation
16 lines • 506 B
JavaScript
/* eslint-disable import/no-named-default */
import { default as Indent } from './Indent';
import { default as Outline } from './Outline';
import { default as Required } from './Required';
import { default as Description } from './Description';
import { default as Type, StringType, TypeMeta } from './Type';
var components = {
Indent: Indent,
Outline: Outline,
Required: Required,
Type: Type,
StringType: StringType,
TypeMeta: TypeMeta,
Description: Description
};
export default components;