github-issue-cli
Version:
CLI application to search for your good first issue
16 lines • 362 B
TypeScript
export declare type Config = {
queries: {
[repo: string]: {
[name: string]: string;
};
};
} & ({
token: string;
login: string;
} | {
token: null;
login: null;
});
export declare const DEFAULT_PATH: string;
export declare function resolve(userConfig: string | null): Config;
//# sourceMappingURL=Config.d.ts.map