ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
282 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,
};