UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

11 lines (10 loc) 203 B
export declare enum JobStatus { ACTIVE = "ACTIVE", OPEN = "OPEN", DRAFT = "DRAFT", ONHOLD = "ONHOLD", CLOSED = "CLOSED" } export declare class JobStatusDto { status: JobStatus; }