export type ResumeBuilder<Result> = Result & {
__builder: "resume";
};

export type Developer<Role extends string, Style extends string> = {
role: Role;
style: Style;
};

export type Profile = Developer<"frontend", "ux-first">;
export type ProfileBuilder = ResumeBuilder<Profile>;

/**
*사용자 경험을 중시하는 프론트엔드 개발자 오영근입니다.
*
*email: dureng5@gmail.com
github: https://github.com/younggeun0
*
*buildProfile()를 선택해서 이동해주세요.
*
*/
function younggeun0(): Profile {
return createResume().()
}
깃허브아티클상세 이력보기