mirror of
1
2
Fork 0
ucaptcha/src/models/IDBSession.js

10 lines
306 B
JavaScript
Raw Normal View History

/**
* Session storage in IDB
* @typedef {Object} IDBSession
* @property {string} sessionId User session ID
2020-03-19 08:35:50 +01:00
* @property {string} websiteKey Website ID
* @property {string} image Image URL for challenge
* @property {number} score How likely is the user to be a human?
*/
2020-03-21 12:24:14 +01:00
export const IDBSession = {};