7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
import Customer from "@/feature/customer/domain/entity/customer"
|
|
|
|
export default interface CustomerRepo {
|
|
fetchList(query: string): Promise<Customer[]>
|
|
}
|
|
|
|
export const customerRepoKey = "customerRepoKey" |