daShangDao_scanBook/uni_modules/uts-openSchema/utssdk/web/index.uts

13 lines
290 B
Plaintext

import { OpenSchema, CanOpenURL } from '../interface.uts'
export const openSchema : OpenSchema = function (url : string) : void {
location.href = url;
}
export const canOpenURL : CanOpenURL = function (url : string) : boolean {
if (url != "") {
return true;
}
return false;
}