scroll/src/common/mod.ts

12 lines
289 B
JavaScript

export * from './editor.ts';
export * from './runtime.ts';
export * from './termios.ts';
export * from './types.ts';
export * from './utils.ts';
export type * from './types.ts';
export const SCROLL_VERSION = '0.0.1';
export const SCROLL_QUIT_TIMES = 3;
export const SCROLL_TAB_SIZE = 4;