es-grid-template
Version:
es-grid-template
21 lines (20 loc) • 604 B
TypeScript
import type { ColumnDef } from "@tanstack/react-table";
import React from "react";
import type { IFormat } from "../type";
type RenderFilterProps<RecordType> = {
column: ColumnDef<RecordType, unknown>;
selectedKeys: any[];
setSelectedKeys: (keys: any[]) => void;
confirm?: () => void;
t?: any;
locale?: any;
dataSourceFilter?: {
key: string;
data: any[];
}[];
format?: IFormat;
buddhistLocale?: any;
dateRangeLocale?: any;
};
export declare const renderFilter: <RecordType>(args: RenderFilterProps<RecordType>) => React.JSX.Element;
export {};