mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +09:00
35 lines
694 B
Text
35 lines
694 B
Text
|
|
interface SessionManager {
|
||
|
|
Session getSessionForUser(DOMString username);
|
||
|
|
readonly attribute unsigned long sessionCount;
|
||
|
|
|
||
|
|
Session iterator;
|
||
|
|
};
|
||
|
|
|
||
|
|
interface Session {
|
||
|
|
readonly attribute DOMString username;
|
||
|
|
// ...
|
||
|
|
};
|
||
|
|
|
||
|
|
interface SessionManager2 {
|
||
|
|
Session2 getSessionForUser(DOMString username);
|
||
|
|
readonly attribute unsigned long sessionCount;
|
||
|
|
|
||
|
|
Session2 iterator = SessionIterator;
|
||
|
|
};
|
||
|
|
|
||
|
|
interface Session2 {
|
||
|
|
readonly attribute DOMString username;
|
||
|
|
// ...
|
||
|
|
};
|
||
|
|
|
||
|
|
interface SessionIterator {
|
||
|
|
readonly attribute unsigned long remainingSessions;
|
||
|
|
};
|
||
|
|
|
||
|
|
interface NodeList {
|
||
|
|
Node iterator = NodeIterator;
|
||
|
|
};
|
||
|
|
|
||
|
|
interface NodeIterator {
|
||
|
|
Node iterator object;
|
||
|
|
};
|