frontend/app/DeliverableItem/EmbeddableForm.ts (8 lines of code) (raw):
interface EmbeddableFormProps<T, U> {
content?: T;
deliverableId: bigint;
bundleId: number;
didUpdate: (newValue?: T) => void;
copySource?: U;
}
export type { EmbeddableFormProps };