You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var rst: DAO.Recordset;
var lastName: string = rst('LastName');
would map to
var rst: DAO.Recordset;
var lastName: string = rst.Fields('LastName').Value;
because we know the type of lastName, we can step through the default property chain (Fields, Value) until we reach a compatible property. Alternatively, the default property chain should be followed until the end, and lastName would have the type of .Value.
microsoft/TypeScript#6508
The text was updated successfully, but these errors were encountered: