laravel-jstools
Version:
JS tools for building front-side of Laravel applications
14 lines (13 loc) • 424 B
TypeScript
import { RequestDataInterface } from '../../../interfaces/RequestDataInterface';
export interface ModalDataInterface {
title?: string;
submitText?: string;
cancelText?: string;
bodyCaption?: string;
bodyText?: string;
openDataUrl?: string;
submitCallback?: () => any;
submitData?: RequestDataInterface;
preloadData?: RequestDataInterface;
initDataCallback?: () => any;
}