blob: 21339e9120473dd0d946e49f201f3daacb89f464 (
plain)
1
2
3
4
5
6
7
8
|
import { toCacheKey } from '../utils';
import { FieldValue } from './field-value';
export class Test extends FieldValue {
constructor(name: string, field: string, value: number) {
super('match', `test_${field}_${toCacheKey(value)}`, name, field, value);
}
}
|