Feature Overview
This feature enables importing a type as an alias.
This feature enables importing a type as an alias.
None.
import Query as Q;
public class ImportAsDemo {
public static Q update(Q query) {
return query;
}
}
public class ImportAsDemo {
public static Query update(Query query) {
return query;
}
}
The alias should be a simple name.
Contribute on Github! Edit this section.