# IPlatformDriver Interface

Module
import { IPlatformDriver } from "@tsed/common"
Source/packages/common/src/platform/interfaces/IPlatformDriver.ts

# Overview

interface IPlatformDriver<T = any> {
    raw: T;
    addRoute(routeOptions: IPlatformRouteOptions): this;
    use(...handlers: any[]): this;
    callback(): any;
}

# Members

raw: T;

addRoute(routeOptions: IPlatformRouteOptions): this;

use(...handlers: any[]): this;

callback(): any;