admin-bro
Version:
Admin panel for apps written in node.js
12 lines (11 loc) • 343 B
TypeScript
import Action from './action.interface';
/**
* @implements Action
* @category Actions
* @module DeleteAction
* @description
* Removes given record from the database. Since it doesn't have a
* component - it redirects right away after clicking its {@link ActionButton}
*/
declare const DeleteAction: Action;
export default DeleteAction;