mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-07 20:58:11 +00:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import type { GlobEnvConfig } from './src/types/config';
|
|
|
|
export const getGlobEnvConfig = (): GlobEnvConfig => {
|
|
const env = import.meta.env;
|
|
return (env as unknown) as GlobEnvConfig;
|
|
};
|