You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/shared/index.tsx

18 lines
606 B
TypeScript

// api
export { buildStorage } from './api/buildStorage';
// components
export { FastForm } from './components/FastForm/index';
export { CustomField } from './components/FastForm/CustomField';
export type {
FastFormFieldComponent,
FastFormFieldProps,
FastFormFieldMeta,
} from './components/FastForm/field';
export { regField } from './components/FastForm/field';
export { regFormContainer } from './components/FastForm/container';
export type { FastFormContainerComponent } from './components/FastForm/container';
// manager
export { getStorage, setStorage, useStorage } from './manager/storage';