
198
2
부
특징
}
// 타입: { movie: string, standup: string }
const preferencesMutable = {
movie: "maybe"
standup: "yes",
};
describePreference(preferencesMutable.movie);
// ~~~~~~~~~~~~~~~~~~~~~~~~// ~~~~~~~~~~~~~~~~~~~~~~~~
// Error: Argument of type 'string' is not assignable// Error: Argument of type 'string' is not assignable
// to parameter of type '"maybe" | "no" | "yes"'.// to parameter of type '"maybe" | "no" | "yes"'.
preferencesMutable.movie = "no"; // Ok
// 타입: readonly { readonly movie: "maybe", readonly standup: "yes" }
const preferencesReadonly = {
movie: "maybe"
standup: "yes",
} as const;
describePreference(preferencesReadonly.movie); // Ok
preferencesReadonly.movie ...