hmm
This commit is contained in:
12
lib/types.ts
Normal file
12
lib/types.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
// lib/types.ts
|
||||
export interface ShippingMethod {
|
||||
_id?: string; // Optional before saving, required after fetching
|
||||
name: string;
|
||||
price: number;
|
||||
}
|
||||
|
||||
export interface ShippingData {
|
||||
_id?: string; // Optional before saving
|
||||
name: string;
|
||||
price: number;
|
||||
}
|
||||
Reference in New Issue
Block a user