diff options
author | crupest <crupest@outlook.com> | 2023-09-21 23:49:12 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-09-21 23:49:12 +0800 |
commit | d477c7270c90b190ed82b13f48f39a05d83503d2 (patch) | |
tree | 572f74b2adc75247b9d1c9a8965e3de2559d4160 /FrontEnd/src/components/common.ts | |
parent | a8a8385cd959e4d9d57b8a35381d2851049c07ff (diff) | |
download | timeline-d477c7270c90b190ed82b13f48f39a05d83503d2.tar.gz timeline-d477c7270c90b190ed82b13f48f39a05d83503d2.tar.bz2 timeline-d477c7270c90b190ed82b13f48f39a05d83503d2.zip |
Fix #1394.
Diffstat (limited to 'FrontEnd/src/components/common.ts')
-rw-r--r-- | FrontEnd/src/components/common.ts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/FrontEnd/src/components/common.ts b/FrontEnd/src/components/common.ts index a6c3e705..840e1be5 100644 --- a/FrontEnd/src/components/common.ts +++ b/FrontEnd/src/components/common.ts @@ -1,7 +1,9 @@ import "./index.css"; -export type { Text, I18nText } from "~src/common"; -export { UiLogicError, c, convertI18nText, useC } from "~src/common"; +export type { I18nText } from "~src/i18n"; +export { convertI18nText, useC } from "~src/i18n"; + +export class UiLogicError extends Error {} export const themeColors = [ "primary", @@ -18,5 +20,4 @@ export { breakpoints } from "./breakpoints"; export * as geometry from "~src/utilities/geometry"; -export * as array from "~src/utilities/array" - +export * as array from "~src/utilities/array"; |