import { GenFilterOptions } from './gen-filter-options'; export declare class GenFilter { /** * เปิด-ปิด การลบ key ที่มีค่าว่างออกจาก filter */ options: GenFilterOptions; /** * loadOptions ของ fn. CustomStore */ loadOptions?: any; /** * กรณีมี field เพิ่มเติมที่ต้องการส่งค่าไปพร้อมกับ URL */ filterList?: any; /** * กรณีมี field dateTime ที่ต้องการ fix ค่า */ exceptionList?: any; constructor( /** * เปิด-ปิด การลบ key ที่มีค่าว่างออกจาก filter */ options: GenFilterOptions, /** * loadOptions ของ fn. CustomStore */ loadOptions?: any, /** * กรณีมี field เพิ่มเติมที่ต้องการส่งค่าไปพร้อมกับ URL */ filterList?: any, /** * กรณีมี field dateTime ที่ต้องการ fix ค่า */ exceptionList?: any); }