7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import { GeneralIdRef } from "../../utils/GeneralIdRef";
|
|
|
|
export default interface Option {
|
|
_id: string | number;
|
|
name: string;
|
|
}
|