summaly/src/iplugin.ts
2023-12-30 08:36:01 +00:00

8 lines
205 B
TypeScript

import type { URL } from 'node:url';
import Summary from './summary.js';
export interface SummalyPlugin {
test: (url: URL) => boolean;
summarize: (url: URL, lang?: string) => Promise<Summary | null>;
}