export default class PlatformType { // 暂时先不区分ios和android //app、mp、h5 static readonly mp: string = 'mp' static readonly ios: string = 'ios' static readonly h5: string = 'h5' static readonly android: string = 'android' }