mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-08 08:37:32 +00:00
15 lines
322 B
TypeScript
15 lines
322 B
TypeScript
export const ENTER_KEY_CODE = 13;
|
|
|
|
export const DATE_TYPE_URN = 'urn:li:dataType:datahub.date';
|
|
export const TYPE_ICON_CLASS_NAME = 'typeIcon';
|
|
|
|
export enum ErrorCodes {
|
|
BadRequest = 400,
|
|
Unauthorized = 401,
|
|
Forbidden = 403,
|
|
NotFound = 404,
|
|
ServerError = 500,
|
|
}
|
|
|
|
export const DEBOUNCE_SEARCH_MS = 300;
|