mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-28 12:43:12 +08:00
[offers][fix] capitalise valuation
This commit is contained in:
14
apps/portal/src/types/offers-profile.d.ts
vendored
14
apps/portal/src/types/offers-profile.d.ts
vendored
@ -26,11 +26,11 @@ export type Experience = {
|
|||||||
id: string;
|
id: string;
|
||||||
jobType?: string | null;
|
jobType?: string | null;
|
||||||
level?: string | null;
|
level?: string | null;
|
||||||
monthlySalary?: valuation | null;
|
monthlySalary?: Valuation | null;
|
||||||
monthlySalaryId?: string | null;
|
monthlySalaryId?: string | null;
|
||||||
specialization?: string | null;
|
specialization?: string | null;
|
||||||
title?: string | null;
|
title?: string | null;
|
||||||
totalCompensation?: valuation | null;
|
totalCompensation?: Valuation | null;
|
||||||
totalCompensationId?: string | null;
|
totalCompensationId?: string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -84,24 +84,24 @@ export type Offers = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export type OffersFullTime = {
|
export type OffersFullTime = {
|
||||||
baseSalary: valuation;
|
baseSalary: Valuation;
|
||||||
baseSalaryId: string;
|
baseSalaryId: string;
|
||||||
bonus: valuation;
|
bonus: Valuation;
|
||||||
bonusId: string;
|
bonusId: string;
|
||||||
id: string;
|
id: string;
|
||||||
level: string;
|
level: string;
|
||||||
specialization: string;
|
specialization: string;
|
||||||
stocks: valuation;
|
stocks: Valuation;
|
||||||
stocksId: string;
|
stocksId: string;
|
||||||
title?: string | null;
|
title?: string | null;
|
||||||
totalCompensation: valuation;
|
totalCompensation: Valuation;
|
||||||
totalCompensationId: string;
|
totalCompensationId: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type OffersIntern = {
|
export type OffersIntern = {
|
||||||
id: string;
|
id: string;
|
||||||
internshipCycle: string;
|
internshipCycle: string;
|
||||||
monthlySalary: valuation;
|
monthlySalary: Valuation;
|
||||||
monthlySalaryId: string;
|
monthlySalaryId: string;
|
||||||
specialization: string;
|
specialization: string;
|
||||||
startYear: number;
|
startYear: number;
|
||||||
|
Reference in New Issue
Block a user