Compile PDF and EPUB files from static Web assets.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

22 行
403 B

  1. import {
  2. add,
  3. AddFunctionOptions,
  4. ArgumentOutOfRangeError,
  5. InvalidArgumentTypeError,
  6. } from '@modal-sh/patchouli-core';
  7. export interface AdderService {
  8. addNumbers(options: AddFunctionOptions): number;
  9. }
  10. export class AdderServiceImpl implements AdderService {
  11. addNumbers(options: AddFunctionOptions) {
  12. return add(options);
  13. }
  14. }
  15. export {
  16. ArgumentOutOfRangeError,
  17. InvalidArgumentTypeError,
  18. };