UNPKG

math-interval-parser

Version:
12 lines (11 loc) 237 B
export interface MathInterval { from: { value: number; included: boolean; }; to: { value: number; included: boolean; }; } export default function entry(str: string): (MathInterval | null);