12 lines
445 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';
declare const self: (vars: ThemeCommonVars) => {
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;