import { Technology } from './technology';
export interface Browser extends Technology {
    majorVersion?: string;
    minorVersion?: string;
}
