UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

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