UNPKG

292 BTypeScriptView Raw
1export declare type AllowedOperator = "in" | "notin";
2export interface MatchExpression {
3 operator: AllowedOperator;
4 values: string[];
5}
6export interface Selector {
7 [l: string]: string | MatchExpression;
8}
9export declare function selectorToQueryString(selector: Selector): string;