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

5 lines
178 B
TypeScript

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