blob: dfe7996b78ecf3c48309e9bbc137a6f8853c0700 (
plain)
1
2
3
4
5
|
import { ValueToken } from '../tokens/value-token';
type KeyValuePair = [string?, ValueToken?];
export type FilterArg = ValueToken | KeyValuePair;
export declare function isKeyValuePair(arr: FilterArg): arr is KeyValuePair;
export {};
|