scroll/src/common/mod.ts

11 lines
262 B
JavaScript
Raw Normal View History

import { importForRuntime } from './runtime.ts';
2023-11-03 11:59:58 -04:00
export * from './runtime.ts';
export * from './strings.ts';
export type { ITestBase } from './test_base.ts';
export async function main() {
const { main } = await importForRuntime('./mod.ts');
await main();
}