1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| declare module "@salesforce/apex/LexSaleAndDeliveryController.init" {
| export default function init(): Promise<any>;
| }
| declare module "@salesforce/apex/LexSaleAndDeliveryController.searchOrderInstatus" {
| export default function searchOrderInstatus(param: {orderDate: any, deliverDate: any, accountid: any, agencyProType: any, userWorkLocation: any, category1: any, category2: any}): Promise<any>;
| }
| declare module "@salesforce/apex/LexSaleAndDeliveryController.searchConsumableorderdetails" {
| export default function searchConsumableorderdetails(param: {orderDate: any, deliverDate: any, accountid: any, agencyProType: any, userWorkLocation: any, category1: any, category2: any}): Promise<any>;
| }
| declare module "@salesforce/apex/LexSaleAndDeliveryController.searchConsumableorFinish" {
| export default function searchConsumableorFinish(param: {orderDate: any, deliverDate: any, accountid: any, agencyProType: any, userWorkLocation: any, category1: any, category2: any}): Promise<any>;
| }
| declare module "@salesforce/apex/LexSaleAndDeliveryController.cleanUp" {
| export default function cleanUp(param: {accountid: any, agencyProType: any, userWorkLocation: any}): Promise<any>;
| }
|
|