UNPKG

@known-as-bmf/store

Version:
18 lines (16 loc) 315 B
/** * 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.', };