vue-psa-architecture/src/app/lists/index.ts

9 lines
310 B
TypeScript
Raw Normal View History

2023-01-31 12:01:27 +03:00
import type { ListsTableApiPort } from "./ListsTable";
import type { ListsSelectApiPort } from "./ListsSelect";
import type { ListFormApiPort } from "./ListForm";
export type { ListFormApiCreateProps } from "./ListForm";
export type ListApiPort = ListsTableApiPort &
ListsSelectApiPort &
ListFormApiPort;