Files
ncd-fe/packages/pl-api/lib/params/antennas.ts
nicole mikołajczyk ad00129411 pl-api: migrate to oxfmt+oxlint
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-02-15 03:00:05 +01:00

21 lines
404 B
TypeScript

/**
* @category Request params
*/
interface CreateAntennaParams {
title: string;
stl?: boolean;
ltl?: boolean;
insert_feeds?: boolean;
with_media_only?: boolean;
ignore_reblog?: boolean;
favourite?: boolean;
list_id?: string;
}
/**
* @category Request params
*/
type UpdateAntennaParams = Partial<CreateAntennaParams>;
export { type CreateAntennaParams, type UpdateAntennaParams };