9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
|
const { fromPartition } = process.electronBinding('session');
|
||
|
|
||
|
export default {
|
||
|
fromPartition,
|
||
|
get defaultSession () {
|
||
|
return fromPartition('');
|
||
|
}
|
||
|
};
|