mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-05-28 14:36:03 -05:00
15 lines
300 B
TypeScript
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;
|
|
}
|