import { CollectionField, LookUpField } from "../../types/interfaces"; import { DeleteEvent } from "../../interfaces"; /** * onDelete will remove any connection between the two records */ declare function getOnDeleteEvent(list: CollectionField, lookup: LookUpField): DeleteEvent; export default getOnDeleteEvent;