import { WebConnector } from "tgrid/protocols/web/WebConnector";
import { Driver } from "tgrid/components/Driver";
async function main(): Promise<void>
{
let connector: WebConnector;
let driver: Driver<IController> = connector.getDriver();
// not supported yet, but should be possible
console.log(driver instanceof Driver); // true
}
The Driver should support its type checking.