UNPKG

@ng1005/chrome-extension-common

Version:

chrome扩展通用库--消息与storage

12 lines (11 loc) 314 B
import { Interceptor } from "./Interceptor"; // 拦截器管理器,只用来保存拦截器的队列 export default class InterceptorsManager { handlers:Array<Interceptor> constructor() { this.handlers = []; } use(fulfilled:any, rejected:any) { this.handlers.push({ fulfilled, rejected }); } }