Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git] / packages / shared / lib / keys / keySource.ts
blob17f06f79106277831e8c4c51810f071e890f1798
1 import { API_KEY_SOURCE } from '../constants';
2 import type { ProcessedApiKey } from '../interfaces';
4 export const getInternalKeys = (keys: ProcessedApiKey[]) => {
5     return keys.filter(({ source }) => source === API_KEY_SOURCE.PROTON);
6 };
8 export const getExternalKeys = (keys: ProcessedApiKey[]) => {
9     return keys.filter(({ source }) => source !== API_KEY_SOURCE.PROTON);