File size: 268 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import '../global-types';
export const getCalypsoVersion = (): string => {
return window?.COMMIT_SHA;
};
export const getEnvironment = (): string => {
return window?.configData?.env_id;
};
export const getTarget = (): string => {
return window?.BUILD_TARGET;
};
|