@known-as-bmf/store
Version:
Lightweight synchronous state management library.
18 lines (16 loc) • 315 B
text/typescript
/**
* Map of error messages that can be thrown.
*
* @internal
*/
interface ErrorMessages {
invalidStore: string;
}
/**
* Map of error messages that can be thrown.
*
* @internal
*/
export const errors: ErrorMessages = {
invalidStore: 'Provided value is not a valid store instance.',
};