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