cmp-aws-database
Version:
The package "cmp-aws-database" is for its database, which defines global tables. These tables are designed to be imported and used across multiple applications of "craft-my-plate."
9 lines (8 loc) • 408 B
TypeScript
import { GenericDAO } from "../../base-dao";
import { CommonFeedbackModel } from "./common-feedback-model";
declare class CommonFeedbackDAO extends GenericDAO<CommonFeedbackModel> {
allCommonFeedbackFetch(): Promise<CommonFeedbackModel[]>;
fetchCommonFeedbacksByType(commonFeedbackType: string): Promise<CommonFeedbackModel[]>;
}
export declare const commonFeedbackDAO: CommonFeedbackDAO;
export {};