This commit is contained in:
암냥 2025-12-11 01:16:37 +09:00
commit e176b1c094
No known key found for this signature in database
17 changed files with 632 additions and 0 deletions

11
src/type/toml.d.ts vendored Normal file
View file

@ -0,0 +1,11 @@
declare module "*.toml" {
const value: Record<string, {
channel: string;
tag: string;
emoji: string;
body: string;
rss: string;
category_filter?: string[];
}>;
export default value;
}

8
src/type/types.ts Normal file
View file

@ -0,0 +1,8 @@
export interface RssSource {
channel: string;
tag: string;
emoji: string;
body: string;
rss: string;
category_filter?: string[];
}