Files
ncd-fe/packages/pl-api/lib/params/streaming.ts
nicole mikołajczyk 13983b6e7d pl-api: improve types
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-02-27 18:49:26 +01:00

15 lines
465 B
TypeScript

/**
* @category Request params
*/
interface StreamingParams {
/** When stream is set to `list`, use this parameter to specify the list ID. */
list?: string;
/** When stream is set to `hashtag` or `hashtag:local`, use this parameter to specify the tag name. */
tag?: string;
group?: string;
/** Domain name of the instance. Required when `stream` is `public:remote` or `public:remote:media`. */
instance?: string;
}
export { type StreamingParams };