Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 302 Bytes

export.md

File metadata and controls

21 lines (17 loc) · 302 Bytes

export

export

export default function run(a: string) {
    var b = '111';
    console.log(a, b);
}

export {Some_Utils} from './helper/some-utils';
function run($a) {
    $b = "111";
    echo $a, $b;
}
require_once(dirname(__FILE__) . '/' . "./helper/some-utils.php");