mirror of
https://github.com/misskey-dev/summaly.git
synced 2025-04-29 02:37:27 +09:00
* feat: add oEmbed support * more safelisted features * fix the syntax * Update README.md * permissions * names * playerを使うように * fix type error * support width (for size ratio) * test for type: video * nullable width * restore max height test * ignored permissions * restore autoplay * Use WHATWG URL --------- Co-authored-by: tamaina <tamaina@hotmail.co.jp>
6 lines
212 B
TypeScript
6 lines
212 B
TypeScript
/// <reference types="node" />
|
|
import { URL } from 'node:url';
|
|
import summary from '../summary.js';
|
|
export declare function test(url: URL): boolean;
|
|
export declare function summarize(url: URL): Promise<summary>;
|