16 lines
251 B
TypeScript
16 lines
251 B
TypeScript
export interface Expression {
|
|
property: string;
|
|
operator: string;
|
|
value: string[];
|
|
}
|
|
|
|
export interface Aggregate {
|
|
type: string;
|
|
property: string | null;
|
|
}
|
|
|
|
export interface MeteredConfig {
|
|
filters: Expression[];
|
|
aggregate: Aggregate;
|
|
}
|