6 lines
190 B
TypeScript
6 lines
190 B
TypeScript
export interface UsingConfigBehaviorOptions {
|
|
componentName: string;
|
|
localeTextPropName?: string;
|
|
}
|
|
export default function usingConfig(options: UsingConfigBehaviorOptions): string;
|