mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
7 lines
182 B
JavaScript
7 lines
182 B
JavaScript
export { name as imported } from "./imported.js";
|
|
export const name = 'client-only-ecmascript';
|
|
export const ClientTypeof = {
|
|
require: typeof require,
|
|
exports: typeof exports
|
|
};
|