preserves/implementations/javascript/src/index.ts

8 lines
189 B
TypeScript
Raw Normal View History

export * from './runtime';
export * as Constants from './constants';
export * as Schema from './schema/index';
2021-03-09 14:59:40 +00:00
const _Array = Array;
type _Array<T> = Array<T>;
export { _Array as Array };