import Priority from '../Priority'; export class Low extends Priority { constructor() { super(3000); } } export default Low;