@ecoba-vn/tender-feature
Version:
14 lines (13 loc) • 381 B
TypeScript
export declare type IOption = {
groupCode: string;
optionCode: "OP1" | "OP1" | "OP1";
groupDescription: string;
normCode: string;
};
declare function getAll(): Promise<IOption[]>;
declare function upload(files: File[]): Promise<any>;
declare const optionService: {
getAll: typeof getAll;
upload: typeof upload;
};
export default optionService;