Add DataTable wirh PowerSearch integrated

Summary: Doc: https://docs.google.com/document/d/1miofxds9DJgWScj0zFyBbdpRH5Rj0T9FqiCapof5-vU/edit#heading=h.pg8svtdjlx7

Reviewed By: lblasa

Differential Revision: D49225985

fbshipit-source-id: ea121c88f4f2275bb15b116858951a8bd2f43cc3
This commit is contained in:
Andrey Goncharov
2023-09-14 04:48:12 -07:00
committed by Facebook GitHub Bot
parent af73cbb669
commit f897ab9487
4 changed files with 850 additions and 53 deletions

View File

@@ -0,0 +1,19 @@
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
import {OperatorConfig} from '../PowerSearch';
export type PowerSearchOperatorProcessor = (
powerSearchOperatorConfig: OperatorConfig,
value: any,
) => boolean;
export type PowerSearchOperatorProcessorConfig = {
[key: string]: PowerSearchOperatorProcessor;
};