10 lines
137 B

import { b, bv } from './b';
import { a, av } from './main';
export function c() {
a(av);
b(bv);
};
export const cv = av + bv;