@lou.codes/cron
Version:
⏲️ Cron Quartz and Cron UNIX expression parser
13 lines (12 loc) • 332 B
TypeScript
import type { Field } from "./Field.js";
import type { ListField } from "./ListField.js";
/**
* Predicate checking if given value is a {@link ListField}.
*
* @category Predicate
* @see {@link ListField}
* @see {@link isRangeField}
*/
export declare const isListField: (
value: Field<number>,
) => value is ListField<number>;