UNPKG

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