amis-rpc-design/node_modules/antd/es/locale/context.d.ts

8 lines
249 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
/// <reference types="react" />
import type { Locale } from '.';
export type LocaleContextProps = Locale & {
exist?: boolean;
};
declare const LocaleContext: import("react").Context<LocaleContextProps | undefined>;
export default LocaleContext;