mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-05-27 14:06:08 -05:00
Format the Deno code via "deno fmt" to use the defined code style from the "deno.json" file.
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;
|
|
}
|