index.ts 364 B

1234567891011121314
  1. export const supportedSlackCommands: string[] = [
  2. '/growi',
  3. ];
  4. export const supportedGrowiCommands: string[] = [
  5. 'search',
  6. 'create',
  7. ];
  8. export * from './interfaces/growi-command';
  9. export * from './models/errors';
  10. export * from './utils/slash-command-parser';
  11. export * from './middlewares/verification-slack-request';
  12. export * from './utils/block-creater';