synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
10 lines • 373 B
TypeScript
/**
* A facet in a SynapseTable can be uniquely identified with the columnName and optional jsonPath.
*
* This type is used for cases where we need to pass just enough data around to identify/look up a facet request or result.
*/
export type UniqueFacetIdentifier = {
columnName: string;
jsonPath?: string;
};
//# sourceMappingURL=UniqueFacetIdentifier.d.ts.map