UNPKG

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."

8 lines (7 loc) 245 B
import { GenericDAO } from "../../base-dao"; import { UserModel } from "./user-model"; declare class UserDAO extends GenericDAO<UserModel> { checkEmailExists(email: String): Promise<void>; } export declare const userDAO: UserDAO; export {};