Backup-bdg's picture
Upload 565 files
b59aa07 verified
raw
history blame contribute delete
272 Bytes
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,
};