Files
feeddeck/supabase/functions/_shared/models/sources/stackoverflow.ts
2023-09-03 16:16:38 +02:00

15 lines
300 B
TypeScript

export type TSourceStackOverflowType = "url" | "tag";
export type TSourceStackOverflowSort =
| "newest"
| "active"
| "featured"
| "votes";
export interface ISourceOptionsStackOverflow {
type?: TSourceStackOverflowType;
url?: string;
tag?: string;
sort?: TSourceStackOverflowSort;
}