mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-23 02:12:41 +00:00
7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
import { a as readonly, w as writable } from "./index2.js";
|
|
const setCanShare = writable(false);
|
|
const canShare = readonly(setCanShare);
|
|
export {
|
|
canShare as c
|
|
};
|