mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
11 lines
150 B
JavaScript
11 lines
150 B
JavaScript
import * as lib from "upstream-lib";
|
|
|
|
export { lib };
|
|
|
|
export const x = lib.x;
|
|
export const xy = lib.x.y;
|
|
|
|
export function func() {
|
|
return lib;
|
|
}
|