export repository from data types

This commit is contained in:
Mads Rasmussen
2023-05-23 19:53:45 +02:00
parent aef3ad2c3e
commit a357631749
2 changed files with 4 additions and 1 deletions

View File

@@ -1,6 +1,8 @@
import './components';
export type * from './models';
export const DATA_TYPE_ROOT_ENTITY_TYPE = 'data-type-root';
export const DATA_TYPE_ENTITY_TYPE = 'data-type';
export const DATA_TYPE_FOLDER_ENTITY_TYPE = 'data-type-folder';
export type * from './models';
export * from './repository';

View File

@@ -0,0 +1 @@
export { UmbDataTypeRepository } from './data-type.repository';