UNPKG

sinon-chrome

Version:

Mock of chrome extensions API for unit testing under nodejs

31 lines (29 loc) 637 B
/** * @typedef Object AllCookieCriteria * * @property {String} [name] * @property {String} [url] * @property {String} [domain] * @property {String} [path] * @property {Boolean} [secure] * @property {Boolean} [session] */ /** * @typedef Object CookieCriteria * * @property {String} name * @property {String} url */ /** * @typedef Object CookieDetails * * @property {String} url * @property {String} [name] * @property {String} [value] * @property {String} [domain] * @property {String} [path] * @property {Boolean} [secure] * @property {Boolean} [httpOnly] * @property {Number} [expirationDate] */ "use strict";