consts.ts 330 B

12345
  1. // Ref: https://github.com/Microflash/remark-callout-directives/blob/fabe4d8adc7738469f253836f0da346591ea2a2b/themes/github/index.js
  2. // Ref: https://github.com/orgs/community/discussions/16925
  3. export const AllCallout = ['note', 'tip', 'important', 'warning', 'caution'] as const;
  4. export type Callout = typeof AllCallout[number];