8 lines
183 B
TypeScript
8 lines
183 B
TypeScript
import { IGlobalVariable } from '@automatisch/types';
|
|
|
|
const getBaseUrl = ($: IGlobalVariable): string => {
|
|
return $.auth.data.instanceUrl as string;
|
|
};
|
|
|
|
export default getBaseUrl;
|