UNPKG

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