vue-psa-architecture/src/app/lists/ListsTable/ports.ts

5 lines
177 B
TypeScript

import type { BaseFetchManyApiPort } from "@/app/common/ports";
import type { List } from "@/domain/entities/list";
export type ListsTableApiPort = BaseFetchManyApiPort<List>;