yg-tools
Version:
some convenient APIs and Methods for Youngon
33 lines (32 loc) • 749 B
TypeScript
export declare class Resume {
sex: string;
name: string;
work: {
workurl: string;
workdesc: string;
}[];
email: string;
phone: string;
skill: string[];
stuid: string | number;
demand: string;
nation: string;
college: string;
birthday: string;
softlang: string[];
department: string;
majorclass: string;
nativeplace: string;
selfcomment: string[];
activityapply: {
actdesc: string;
actname: string;
actrole: string;
acttime: string;
}[];
computermaster: 0 | 1 | 2;
departmentreason: string;
constructor(option?: Partial<Resume>);
static createResume(option?: Partial<Resume>): Resume;
}
export default Resume;