import { RunTime, RunTimeData } from './runTime'

export default class ZfbMpRunTime extends RunTime {
  constructor(runTimeData?: RunTimeData) {
    super(runTimeData)
  }

  get g() {
    return null
  }
}
