index.ts 181 B

1234567891011
  1. import { ChatEn } from './chat';
  2. import { CommonEn } from './common';
  3. import { FlowEn } from './flow';
  4. const en = {
  5. ...ChatEn,
  6. ...FlowEn,
  7. ...CommonEn,
  8. };
  9. export default en;