File size: 282 Bytes
246d201 |
1 2 3 4 5 6 7 8 9 10 11 |
import { NON_REPO_SUGGESTIONS } from "./non-repo-suggestions";
import { REPO_SUGGESTIONS } from "./repo-suggestions";
export const SUGGESTIONS: Record<
"repo" | "non-repo",
Record<string, string>
> = {
repo: REPO_SUGGESTIONS,
"non-repo": NON_REPO_SUGGESTIONS,
};
|