12 lines
444 B
TypeScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import type { ThemeCommonVars } from '../../_styles/common';
import type { Theme } from '../../_mixins';
2024-08-02 18:19:39 +08:00
declare function self(vars: ThemeCommonVars): {
2024-01-29 09:26:07 +08:00
colorError: string;
colorLoading: string;
height: string;
};
export type LoadingBarThemeVars = ReturnType<typeof self>;
declare const loadingBarLight: Theme<'LoadingBar', LoadingBarThemeVars>;
export default loadingBarLight;
export type LoadingBarTheme = typeof loadingBarLight;