mirror of
https://gitee.com/yudaocode/yudao-ui-admin-vben.git
synced 2025-12-30 02:22:25 +00:00
10 lines
184 B
TypeScript
10 lines
184 B
TypeScript
let mockTimeZone: null | string = null;
|
|
|
|
export const setTimezone = (timeZone: string) => {
|
|
mockTimeZone = timeZone;
|
|
};
|
|
|
|
export const getTimezone = () => {
|
|
return mockTimeZone;
|
|
};
|