1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00

fix: export NotFoundError and ISegmentService in internals.ts (#4997)

export NotFoundError and ISegmentService in internals.ts

Signed-off-by: andreas-unleash <andreas@getunleash.ai>
This commit is contained in:
andreas-unleash 2023-10-11 14:31:45 +03:00 committed by GitHub
parent 69286339fc
commit 4e8c0478bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -16,11 +16,12 @@ import PasswordUndefinedError from './password-undefined';
import PasswordMismatchError from './password-mismatch'; import PasswordMismatchError from './password-mismatch';
import PatternError from './pattern-error'; import PatternError from './pattern-error';
import ForbiddenError from './forbidden-error'; import ForbiddenError from './forbidden-error';
import NotFoundError from './notfound-error';
export { export {
BadDataError, BadDataError,
UNIQUE_CONSTRAINT_VIOLATION, UNIQUE_CONSTRAINT_VIOLATION,
FOREIGN_KEY_VIOLATION, FOREIGN_KEY_VIOLATION,
NotFoundError,
DisabledError, DisabledError,
FeatureHasTagError, FeatureHasTagError,
IncompatibleProjectError, IncompatibleProjectError,

View File

@ -13,3 +13,4 @@ export * from './types';
export * from './util'; export * from './util';
export * from './error'; export * from './error';
export * from './features'; export * from './features';
export * from './segments/segment-service-interface';