Files
feeddeck/supabase/functions/_shared/models/sources/stackoverflow.ts
Rico Berger 37cd4dff6f [core] Run "deno fmt" (#65)
Format the Deno code via "deno fmt" to use the defined code style from
the "deno.json" file.
2023-11-04 15:45:42 +01: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;
}