Berikuta ini beberapa tips untuk TS. PartialPake Partial untuk bikin tipe yang nggak semua field-nya harus diisi. type User = { name: string; age: number; } // error: Property 'age' is missing in type '{ name: string; }' // but required in type 'User'.ts(2741) const u1:User = { name: 'aaa' } // no error const u2: