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