9 lines
411 B
TypeScript
9 lines
411 B
TypeScript
import type { Messages } from './message';
|
|
export declare function findMessage(messages: Messages, constructPath: string, props?: any): {
|
|
[key: string]: {
|
|
[key: string]: any;
|
|
};
|
|
};
|
|
export declare function hasMessage(messages: Messages, constructPath: string, props: any): string | void;
|
|
export declare function hasNoMessage(messages: Messages, constructPath: string, props: any): string | void;
|