gwitter
Version:
Turn GitHub Issues into your personal microblog platform
21 lines (20 loc) • 508 B
TypeScript
import { GwitterConfig } from '../types/global';
declare let config: {
request: {
token: string;
clientID: string;
clientSecret: string;
pageSize: number;
autoProxy: string;
owner: string;
repo: string;
};
app: {
onlyShowOwner: boolean;
enableRepoSwitcher: boolean;
enableAbout: boolean;
enableEgg: boolean;
};
};
export declare function setConfig(newConfig: GwitterConfig): void;
export default config;