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

9 lines (8 loc) 329 B
import { GenericDAO } from "../../base-dao"; import { CounterModel } from "./counter-model"; declare class CounterDAO extends GenericDAO<CounterModel> { allCounterFetch(): Promise<CounterModel[]>; fetchActiveCounter(counterType: string): Promise<CounterModel[]>; } export declare const counterDAO: CounterDAO; export {};