@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
31 lines (30 loc) • 755 B
TypeScript
declare enum NatureOfWorkEnum {
FULLTIME = "FULLTIME",
PARTTIME = "PARTTIME",
BOTH = "BOTH"
}
declare enum ModeOfWorkEnum {
REMOTE = "REMOTE",
ONSITE = "ONSITE",
BOTH = "BOTH"
}
export declare class CreateFreelancerDto {
fullName: string;
email: string;
mobileCode: string;
mobile: string;
password: string;
confirmPassword: string;
developer: boolean;
natureOfWork: NatureOfWorkEnum;
expectedHourlyCompensation: number;
modeOfWork: ModeOfWorkEnum;
isImmediateJoiner: boolean;
availabilityToJoin: string;
linkedinProfileLink?: string;
kaggleProfileLink?: string;
githubProfileLink?: string;
stackOverflowProfileLink?: string;
portfolioLink?: string;
}
export {};