9 lines
491 B
TypeScript
9 lines
491 B
TypeScript
import { JobHuntingModel } from 'src/model/job_hunting.model';
|
|
declare const JobHuntingInfoDto_base: import("@nestjs/common").Type<Pick<JobHuntingModel, "type">>;
|
|
export declare class JobHuntingInfoDto extends JobHuntingInfoDto_base {
|
|
}
|
|
declare const JobHuntingApplyDto_base: import("@nestjs/common").Type<Pick<JobHuntingModel, "type" | "realName" | "idCardNo" | "phone" | "teamCount" | "dreamResume">>;
|
|
export declare class JobHuntingApplyDto extends JobHuntingApplyDto_base {
|
|
}
|
|
export {};
|