export const CREATE = (collection: string) => { return `CREATE ${collection}`; }; export const READ = (collection: string) => { return `READ ${collection}`; }; export const UPDATE = (collection: string) => { return `UPDATE ${collection}`; }; export const DELETE = (collection: string) => { return `DELETE ${collection}`; };