RobotHub-TransportServer / demo /src /lib /settings.svelte.ts
blanchon's picture
Update
b91acfc
raw
history blame
180 Bytes
import { getServerUrl } from './index.js';
interface Settings {
transportServerUrl: string;
}
export const settings: Settings = $state({
transportServerUrl: getServerUrl()
});